-
Notifications
You must be signed in to change notification settings - Fork 22
54 lines (45 loc) · 1.52 KB
/
tests-launcher.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
name: Run
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: '01 01 * * *'
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
javascript-code-analysis:
name: Javascript
uses: ./.github/workflows/javascript-code-analysis.yml
secrets: inherit
php-code-analysis:
name: PHP
uses: ./.github/workflows/php-code-analysis.yml
secrets: inherit
php-code-analysis-legacy:
name: PHP
uses: ./.github/workflows/php-code-analysis-legacy.yml
secrets: inherit
php-unit-tests-shopware-5-7:
name: Unit tests
uses: ./.github/workflows/php-unit-tests-shopware-5-7.yml
secrets: inherit
needs: [ javascript-code-analysis, php-code-analysis, php-code-analysis-legacy ]
php-unit-tests-shopware-legacy-versions:
name: Unit tests legacy
uses: ./.github/workflows/php-unit-tests-shopware-legacy.yml
secrets: inherit
needs: [ javascript-code-analysis, php-code-analysis, php-code-analysis-legacy ]
php-e2e-tests-shopware-5-7:
name: E2E
uses: ./.github/workflows/e2e-tests.yml
secrets: inherit
needs: [ php-unit-tests-shopware-5-7, php-unit-tests-shopware-legacy-versions ]
php-e2e-tests-shopware-legacy:
name: E2E legacy
uses: ./.github/workflows/e2e-tests-legacy.yml
secrets: inherit
needs: [ php-e2e-tests-shopware-5-7 ]