-
Notifications
You must be signed in to change notification settings - Fork 27
87 lines (81 loc) · 1.98 KB
/
continuous.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: 👷 Continuous
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: 🏗️ Lint, Test & Build
runs-on: ubuntu-latest
timeout-minutes: 15
env:
HUSKY: 0
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/workflows/actions/build
with:
build: true
token: ${{ secrets.GITHUB_TOKEN }}
e2e-components:
name: 🧪 Component Tests
runs-on: ubuntu-22.04
timeout-minutes: 30
env:
HUSKY: 0
needs: [build]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/workflows/actions/setup
- uses: ./.github/workflows/actions/e2e-setup
- uses: ./.github/workflows/actions/e2e-components
e2e-visual:
name: 🧪 E2E Tests
runs-on: ubuntu-22.04
timeout-minutes: 30
env:
HUSKY: 0
needs: [build]
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/workflows/actions/setup
- uses: ./.github/workflows/actions/e2e-setup
- uses: ./.github/workflows/actions/e2e-visual
angular:
name: 🧪 Angular Tests
runs-on: ubuntu-22.04
timeout-minutes: 30
env:
HUSKY: 0
strategy:
fail-fast: false
matrix:
apps: [v16, v17, v18]
needs: [build]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/workflows/actions/setup
- uses: ./.github/workflows/actions/angular-setup
with:
app: ${{ matrix.apps }}
- uses: ./.github/workflows/actions/angular-build
with:
app: ${{ matrix.apps }}
- uses: ./.github/workflows/actions/angular-test
with:
app: ${{ matrix.apps }}