LSP End to End Tests #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LSP End to End Tests | |
on: | |
workflow_dispatch: | |
inputs: | |
automationBranch: | |
description: 'Set the branch to use for automation tests' | |
required: false | |
default: 'develop' | |
type: string | |
auraLsp: | |
description: 'auraLsp.e2e.ts' | |
required: false | |
default: true | |
type: boolean | |
visualforceLsp: | |
description: 'visualforceLsp.e2e.ts' | |
required: false | |
default: true | |
type: boolean | |
workflow_call: | |
inputs: | |
automationBranch: | |
description: 'Set the branch to use for automation tests' | |
required: false | |
default: 'develop' | |
type: string | |
auraLsp: | |
description: 'auraLsp.e2e.ts' | |
required: false | |
default: true | |
type: boolean | |
visualforceLsp: | |
description: 'visualforceLsp.e2e.ts' | |
required: false | |
default: true | |
type: boolean | |
jobs: | |
auraLSP: | |
if: ${{ inputs.auraLsp }} | |
uses: ./.github/workflows/runE2ETest.yml | |
secrets: inherit | |
with: | |
automationBranch: ${{ inputs.automationBranch }} | |
testToRun: 'auraLsp.e2e.ts' | |
visualforceLSP: | |
if: ${{ inputs.visualforceLsp }} | |
uses: ./.github/workflows/runE2ETest.yml | |
secrets: inherit | |
with: | |
automationBranch: ${{ inputs.automationBranch }} | |
testToRun: 'visualforceLsp.e2e.ts' |