-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
163 lines (126 loc) · 3.87 KB
/
Copy pathbuild.yml
File metadata and controls
163 lines (126 loc) · 3.87 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: Verify
env:
NODE_VERSION: 24
VP_GIT_HOOKS: 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- release/v3
pull_request:
branches:
- release/v3
jobs:
install-node-dependencies:
name: Install node dependencies
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-env
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'true'
- name: Install dependencies
run: vp install --frozen-lockfile -- --strict-peer-dependencies
build-packages:
name: Build packages
runs-on: ubuntu-latest
needs: install-node-dependencies
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-env
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'true'
- uses: ./.github/actions/restore-dependencies
- name: Build packages
run: vp run build && vp run build:demos
- name: Check package exports
run: vp run check:package-exports
check-linting-formatting:
name: Check linting & formatting
runs-on: ubuntu-latest
needs: install-node-dependencies
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-env
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'true'
- uses: ./.github/actions/restore-dependencies
- name: Run linting and formatting checks
run: vp check
run-unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
needs: install-node-dependencies
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-env
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'true'
- uses: ./.github/actions/restore-dependencies
- name: Run unit tests
run: vp test
run-e2e-tests:
name: Run e2e tests (shard ${{ matrix.shard }}/${{ matrix.total }})
runs-on: ubuntu-latest
needs: build-packages
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
shard: [1, 2, 3, 4]
total: [4]
steps:
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-env
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'true'
- uses: ./.github/actions/restore-dependencies
- uses: ./.github/actions/setup-playwright
- name: Run Playwright tests
run: vp exec playwright test --project=chromium --shard=${{ matrix.shard }}/${{ matrix.total }}
- name: Upload blob report
if: always()
uses: actions/upload-artifact@v7
with:
name: e2e-blob-report-${{ matrix.shard }}
path: blob-report
retention-days: 7
merge-e2e-reports:
name: Merge e2e reports
runs-on: ubuntu-latest
needs: [install-node-dependencies, run-e2e-tests]
if: always() && needs.install-node-dependencies.result == 'success'
timeout-minutes: 10
steps:
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-env
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'true'
- uses: ./.github/actions/restore-dependencies
- name: Download blob reports
uses: actions/download-artifact@v8
with:
path: all-blob-reports
pattern: e2e-blob-report-*
merge-multiple: true
- name: Merge into HTML report
if: ${{ hashFiles('all-blob-reports/**') != '' }}
run: vp exec playwright merge-reports --reporter html ./all-blob-reports
- name: Upload merged HTML report
uses: actions/upload-artifact@v7
with:
name: playwright-html-report
path: playwright-report
retention-days: 14