-
Notifications
You must be signed in to change notification settings - Fork 407
47 lines (43 loc) · 1.12 KB
/
e2e.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
name: End to End Tests
on:
workflow_dispatch:
inputs:
automationBranch:
description: 'Set the branch to use for automation tests'
required: false
default: 'develop'
type: string
apexE2ETests:
description: 'Apex E2E Tests'
required: false
default: true
type: boolean
coreE2ETests:
description: 'Core E2E Tests'
required: false
default: true
type: boolean
lspE2ETests:
description: 'LSP E2E Tests'
required: false
default: true
type: boolean
jobs:
Apex_E2E_tests:
if: ${{ inputs.apexE2ETests }}
uses: ./.github/workflows/apexE2E.yml
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}
Core_E2E_tests:
if: ${{ inputs.coreE2ETests }}
uses: ./.github/workflows/coreE2E.yml
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}
LSP_E2E_tests:
if: ${{ inputs.lspE2ETests }}
uses: ./.github/workflows/lspE2E.yml
secrets: inherit
with:
automationBranch: ${{ inputs.automationBranch }}