-
Notifications
You must be signed in to change notification settings - Fork 993
455 lines (374 loc) Β· 13.8 KB
/
ci.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
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
name: βοΈ CI
on:
pull_request
# Cancel in-progress runs of this workflow.
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
only-doc-changes:
if: github.repository == 'redwoodjs/redwood'
name: π Only doc changes?
runs-on: ubuntu-latest
outputs:
only-doc-changes: ${{ steps.only-doc-changes.outputs.only-doc-changes }}
steps:
- uses: actions/checkout@v3
- name: β¬’ Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: π Yarn install
working-directory: ./.github/actions/only_doc_changes
run: yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ github.token }}
- name: π Only doc changes?
id: only-doc-changes
uses: ./.github/actions/only_doc_changes
check:
needs: only-doc-changes
if: needs.only-doc-changes.outputs.only-doc-changes == 'false'
name: β
Check constraints, dependencies, and package.json's
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: β¬’ Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: π Yarn install
working-directory: ./tasks/check
run: yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ github.token }}
- name: β
Check constraints, dependencies, and package.json's
uses: ./tasks/check
check-docs:
needs: only-doc-changes
if: needs.only-doc-changes.outputs.only-doc-changes == 'true'
name: β
Check constraints, dependencies, and package.json's
runs-on: ubuntu-latest
steps:
- run: echo "Only doc changes"
build-lint-test:
needs: check
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
fail-fast: true
name: π Build, lint, test / ${{ matrix.os }} / node 18 latest
runs-on: ${{ matrix.os }}
steps:
- name: Remove the tsc problem matcher if not ubuntu-latest
if: matrix.os != 'ubuntu-latest'
run: echo "echo "::remove-matcher owner=tsc::""
- uses: actions/checkout@v3
- name: β¬’ Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: π Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache
- name: π Yarn install
run: yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ github.token }}
- name: π¨ Build
run: yarn build
- name: π Lint
run: yarn lint
- name: Get number of CPU cores
if: always()
id: cpu-cores
uses: SimenB/github-actions-cpu-cores@v1
- name: π§ͺ Test
run: yarn test-ci ${{ steps.cpu-cores.outputs.count }}
build-lint-test-docs:
needs: only-doc-changes
if: needs.only-doc-changes.outputs.only-doc-changes == 'true'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: π Build, lint, test / ${{ matrix.os }} / node 18 latest
runs-on: ${{ matrix.os }}
steps:
- run: echo "Only doc changes"
tutorial-e2e:
needs: check
strategy:
matrix:
bundler: [vite, webpack]
name: π² Tutorial E2E / ${{ matrix.bundler }} / node 18 latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: β¬’ Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: π Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache
- name: π Yarn install
run: yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ github.token }}
- name: π Create a temporary directory
id: createpath
run: |
project_path=$(mktemp -d -t redwood.XXXXXX)
echo "::set-output name=project_path::$project_path"
framework_path=$(pwd)
echo "::set-output name=framework_path::$framework_path"
- name: π² Create a Redwood App
run: |
./tasks/run-e2e ${{ steps.createpath.outputs.project_path }} \
--no-start \
--bundler ${{ matrix.bundler }}
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: π Git init in the Redwood App directory
run: |
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git init --initial-branch main && git add .
git commit -a --message=init
working-directory: ${{ steps.createpath.outputs.project_path }}
- name: Start server in background
run: yarn rw dev --no-generate --fwd="--no-open" &
working-directory: ${{ steps.createpath.outputs.project_path }}
- name: π² Install Cypress
run: yarn run cypress install
- name: π² Run cypress
uses: cypress-io/github-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CYPRESS_RW_PATH: "${{ steps.createpath.outputs.project_path }}"
with:
# We've already installed dependencies.
install: false
env: true
browser: chrome
record: false
wait-on: 'http://[::1]:8910'
working-directory: ./tasks/e2e
spec: |
cypress/e2e/01-tutorial/*.cy.js
cypress/e2e/04-logger/*.cy.js
tutorial-e2e-docs:
needs: only-doc-changes
if: needs.only-doc-changes.outputs.only-doc-changes == 'true'
strategy:
matrix:
os: [ubuntu-latest]
name: π² Tutorial E2E / ${{ matrix.os }} / node 18 latest
runs-on: ${{ matrix.os }}
steps:
- run: echo "Only doc changes"
smoke-tests:
needs: check
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
bundler: [vite, webpack]
name: π Smoke tests / ${{ matrix.os }} / ${{ matrix.bundler }} / node 18 latest
runs-on: ${{ matrix.os }}
env:
REDWOOD_CI: 1
REDWOOD_VERBOSE_TELEMETRY: 1
steps:
- uses: actions/checkout@v3
- name: β¬’ Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: π Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache
- name: π Yarn install
run: yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ github.token }}
- name: π¨ Build
run: yarn build
- name: π² Set up test project
id: set-up-test-project
uses: ./.github/actions/set-up-test-project
with:
bundler: ${{ matrix.bundler }}
env:
REDWOOD_DISABLE_TELEMETRY: 1
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: π Install playwright dependencies
run: npx playwright install --with-deps chromium
- name: π§βπ» Run dev smoke tests
working-directory: ./tasks/smoke-tests/dev
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: '${{ steps.set-up-test-project.outputs.test-project-path }}'
REDWOOD_DISABLE_TELEMETRY: 1
- name: π Run auth smoke tests
working-directory: ./tasks/smoke-tests/auth
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: ${{ steps.set-up-test-project.outputs.test-project-path }}
REDWOOD_DISABLE_TELEMETRY: 1
- name: Run `rw build --no-prerender`
run: |
yarn rw build --no-prerender
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run `rw prerender`
run: |
yarn rw prerender --verbose
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: π₯οΈ Run serve smoke tests
working-directory: tasks/smoke-tests/serve
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: ${{ steps.set-up-test-project.outputs.test-project-path }}
REDWOOD_DISABLE_TELEMETRY: 1
- name: π Run prerender smoke tests
working-directory: tasks/smoke-tests/prerender
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: ${{ steps.set-up-test-project.outputs.test-project-path }}
REDWOOD_DISABLE_TELEMETRY: 1
- name: π Run Storybook smoke tests
working-directory: tasks/smoke-tests/storybook
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: ${{ steps.set-up-test-project.outputs.test-project-path }}
REDWOOD_DISABLE_TELEMETRY: 1
- name: Run `rw info`
run: |
yarn rw info
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run `rw lint`
run: |
yarn rw lint ./api/src --fix
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "rw test api"
run: |
yarn rw test api --no-watch
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "rw test web"
run: |
yarn rw test web --no-watch
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "rw check"
run: |
yarn rw check
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "rw storybook"
run: |
yarn rw sb --smoke-test
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "rw exec"
run: |
yarn rw g script testScript && yarn rw exec testScript
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "prisma generate"
run: |
yarn rw prisma generate
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "rw data-migrate"
run: |
yarn rw dataMigrate up
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "data-migrate install"
run: |
yarn rw data-migrate install
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "prisma migrate"
run: |
yarn rw prisma migrate dev --name ci-test
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run `rw deploy --help`
run: yarn rw setup deploy --help && yarn rw deploy --help
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run `rw setup ui --help`
run: yarn rw setup --help && yarn rw setup ui --help
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "g page"
run: |
yarn rw g page ciTest
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "g sdl"
run: |
yarn rw g sdl userExample
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Run "rw type-check"
run: |
yarn rw type-check
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
- name: Throw Error | Run `rw g sdl <model>`
run: |
yarn rw g sdl DoesNotExist
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
continue-on-error: true
# We've disabled Replay for now but may add it back. When we do,
# we need to add this to all the smoke tests steps' env:
#
# ```
# env:
# RECORD_REPLAY_METADATA_TEST_RUN_TITLE: π Smoke tests / ${{ matrix.os }} / node 18 latest
# RECORD_REPLAY_TEST_METRICS: 1
# ```
#
# - name: Upload Replays
# if: always()
# uses: replayio/action-upload@v0.5.0
# with:
# api-key: rwk_cZn4WLe8106j6tC5ygNQxDpxAwCLpFo5oLQftiRN7OP
smoke-tests-docs:
needs: only-doc-changes
if: needs.only-doc-changes.outputs.only-doc-changes == 'true'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: π Smoke test / ${{ matrix.os }} / node 18 latest
runs-on: ${{ matrix.os }}
steps:
- run: echo "Only doc changes"
telemetry-check:
needs: check
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
fail-fast: true
name: π Telemetry check / ${{ matrix.os }} / node 18 latest
runs-on: ${{ matrix.os }}
env:
REDWOOD_REDIRECT_TELEMETRY: "http://127.0.0.1:48619" # Random port
steps:
- uses: actions/checkout@v3
- name: β¬’ Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: π Set up yarn cache
uses: ./.github/actions/set-up-yarn-cache
- name: π Yarn install
run: yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ github.token }}
- name: π¨ Build
run: yarn build
- name: π’ Listen for telemetry (CRWA)
run: node ./.github/actions/telemetry_check/check.mjs --mode crwa
- name: π’ Listen for telemetry (CLI)
run: node ./.github/actions/telemetry_check/check.mjs --mode cli
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
telemetry-check-docs:
needs: only-doc-changes
if: needs.only-doc-changes.outputs.only-doc-changes == 'true'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: π Telemetry check / ${{ matrix.os }} / node 18 latest
runs-on: ${{ matrix.os }}
steps:
- run: echo "Only doc changes"