-
Notifications
You must be signed in to change notification settings - Fork 406
57 lines (51 loc) · 1.34 KB
/
lspE2E.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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'