-
Notifications
You must be signed in to change notification settings - Fork 6
276 lines (265 loc) · 9.19 KB
/
Copy pathtest.yml
File metadata and controls
276 lines (265 loc) · 9.19 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
name: test
on:
pull_request:
branches: [dev, v1]
push:
branches: [dev, v1]
schedule:
- cron: "0 0 * * 6" # Every Saturday
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
id-token: write
actions: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, latest]
fail-fast: false
steps:
- uses: actions/checkout@v7
- name: Set up Turborepo Remote Cache
uses: ./.github/actions/setup-turbo-remote-cache
with:
team: ${{ vars.TURBO_TEAM }}
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.4.0
- name: Install dependencies
run: pnpm install
- name: Build packages
run: pnpm run build --filter=./packages/*
- run: pnpm run test
- name: Verify build artifacts
run: pnpm run verify-artifacts
- name: Run E2E package tests
run: pnpm run test:e2e:package
test-typesafety:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Turborepo Remote Cache
uses: ./.github/actions/setup-turbo-remote-cache
with:
team: ${{ vars.TURBO_TEAM }}
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: 24
cache: pnpm
- run: pnpm install
- run: pnpm run typecheck
test-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, latest]
steps:
- uses: actions/checkout@v7
- name: Set up Turborepo Remote Cache
uses: ./.github/actions/setup-turbo-remote-cache
with:
team: ${{ vars.TURBO_TEAM }}
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.4.0
- run: pnpm install
- run: pnpm run build
test-vite-compatibility:
runs-on: ubuntu-latest
strategy:
matrix:
vite-version: ["4", "5", "6", "7", "8"]
fail-fast: false
steps:
- uses: actions/checkout@v7
- name: Set up Turborepo Remote Cache
uses: ./.github/actions/setup-turbo-remote-cache
with:
team: ${{ vars.TURBO_TEAM }}
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: lts/*
cache: pnpm
- run: pnpm install
- name: Build workspace packages
run: pnpm run build:packages
- name: Apply overrides for Vite version
run: node scripts/override-vite.js ${{ matrix.vite-version }}
- name: Reinstall dependencies with overrides
run: pnpm install --no-frozen-lockfile
- name: Build vite-legacy playground
run: pnpm run build --filter=vite-legacy-playground
test-e2e:
runs-on: ubuntu-latest
timeout-minutes: 16
strategy:
matrix:
suite: [e2e]
fail-fast: false
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 2
- name: Set up Turborepo Remote Cache
uses: ./.github/actions/setup-turbo-remote-cache
with:
team: ${{ vars.TURBO_TEAM }}
- name: Set Turbo base/head for PRs
if: ${{ github.event_name == 'pull_request' }}
run: |
echo "TURBO_SCM_BASE=${{ github.event.pull_request.base.sha || github.event.before }}" >> $GITHUB_ENV
echo "TURBO_SCM_HEAD=${{ github.sha }}" >> $GITHUB_ENV
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: lts/*
cache: pnpm
- run: pnpm install
- uses: actions/cache@v6
with:
path: ~/.cache/ms-playwright
key: ubuntu-latest-pw-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
ubuntu-latest-pw-
- name: Install Playwright browsers
# Chromium + Firefox only — matches playwright-www projects on Linux (webkit is macOS-only)
run: pnpm exec playwright install --with-deps chromium firefox
- name: Build www and dependencies
run: pnpm run build --filter=www...
- name: Run ${{ matrix.suite }} tests (PR)
if: ${{ github.event_name == 'pull_request' }}
run: pnpm run test:${{ matrix.suite }} --affected --log-order=stream
- name: Run ${{ matrix.suite }} tests (dev/workflow_dispatch)
if: ${{ github.event_name != 'pull_request' }}
run: pnpm run test:${{ matrix.suite }} --log-order=stream --filter="@repo/playwright-*"
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-results-${{ matrix.suite }}
path: "**/test-results/**"
retention-days: 30
test-windows:
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(join(github.event.pull_request.labels.*.name, ','), 'windows')
runs-on: windows-latest
strategy:
matrix:
node-version: [lts/*, latest]
continue-on-error: ${{ matrix.node-version == 'latest' }}
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 2 # for checking against dev and for following the PR history
- name: Set up Turborepo Remote Cache
uses: ./.github/actions/setup-turbo-remote-cache
with:
team: ${{ vars.TURBO_TEAM }}
- name: Set Turbo base/head for PRs
if: ${{ github.event_name == 'pull_request' }}
run: |
echo "TURBO_SCM_BASE=${{ github.event.pull_request.base.sha || github.event.before }}" >> $GITHUB_ENV
echo "TURBO_SCM_HEAD=${{ github.sha }}" >> $GITHUB_ENV
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.4.0
- name: Install dependencies
run: pnpm install
- uses: actions/cache@v6
with:
path: ~/.cache/ms-playwright
key: windows-latest-pw-${{ hashFiles('pnpm-lock.yaml') }}-${{ matrix.node-version }}
restore-keys: |
windows-latest-pw-${{ hashFiles('pnpm-lock.yaml') }}-
windows-latest-pw-
- name: Install Playwright browsers
run: pnpm exec playwright install --with-deps
- name: Sanitize node version for artifact name
id: sanitize
shell: bash
run: |
SANITIZED=$(echo "${{ matrix.node-version }}" | sed 's/[\/\*]/-/g')
echo "version=$SANITIZED" >> "$GITHUB_OUTPUT"
- run: pnpm build
- run: pnpm run test
- run: pnpm run test:e2e
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-results-windows-${{ steps.sanitize.outputs.version }}
path: "**/test-results/**"
retention-days: 30
test-macos:
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(join(github.event.pull_request.labels.*.name, ','), 'macos')
runs-on: macos-latest
strategy:
matrix:
node-version: [lts/*, latest]
continue-on-error: ${{ matrix.node-version == 'latest' }}
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 2 # for checking against dev and for following the PR history
- name: Set up Turborepo Remote Cache
uses: ./.github/actions/setup-turbo-remote-cache
with:
team: ${{ vars.TURBO_TEAM }}
- name: Set Turbo base/head for PRs
if: ${{ github.event_name == 'pull_request' }}
run: |
echo "TURBO_SCM_BASE=${{ github.event.pull_request.base.sha || github.event.before }}" >> $GITHUB_ENV
echo "TURBO_SCM_HEAD=${{ github.sha }}" >> $GITHUB_ENV
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.4.0
- name: Install dependencies
run: pnpm install
- uses: actions/cache@v6
with:
path: ~/.cache/ms-playwright
key: macos-latest-pw-${{ hashFiles('pnpm-lock.yaml') }}-${{ matrix.node-version }}
restore-keys: |
macos-latest-pw-${{ hashFiles('pnpm-lock.yaml') }}-
macos-latest-pw-
- name: Install Playwright browsers
run: pnpm exec playwright install --with-deps
- name: Sanitize node version for artifact name
id: sanitize
shell: bash
run: |
SANITIZED=$(echo "${{ matrix.node-version }}" | sed 's/[\/\*]/-/g')
echo "version=$SANITIZED" >> "$GITHUB_OUTPUT"
- run: pnpm build
- run: pnpm run test
- run: pnpm run test:e2e
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-results-macos-${{ steps.sanitize.outputs.version }}
path: "**/test-results/**"
retention-days: 30