Skip to content

LSP End to End Tests #24

LSP End to End Tests

LSP End to End Tests #24

Workflow file for this run

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'