-
Notifications
You must be signed in to change notification settings - Fork 1k
667 lines (521 loc) Β· 19 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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
name: βοΈ CI
on:
pull_request:
push:
branches: ['next', 'release/**']
# 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:
detect-changes:
if: github.repository == 'redwoodjs/redwood'
name: π Detect changes
runs-on: ubuntu-latest
outputs:
onlydocs: ${{ steps.detect-changes.outputs.onlydocs }}
rsc: ${{ steps.detect-changes.outputs.rsc }}
ssr: ${{ steps.detect-changes.outputs.ssr }}
steps:
- uses: actions/checkout@v4
- name: β¬’ Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: π Yarn install
working-directory: ./.github/actions/detect-changes
run: yarn install --inline-builds
env:
GITHUB_TOKEN: ${{ github.token }}
- name: π Detect changes
id: detect-changes
uses: ./.github/actions/detect-changes
check:
needs: detect-changes
if: needs.detect-changes.outputs.onlydocs == 'false'
name: β
Check constraints, dependencies, and package.json's
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: β¬’ Set up Node.js
uses: actions/setup-node@v4
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-skip:
needs: detect-changes
if: needs.detect-changes.outputs.onlydocs == 'true'
name: β
Check constraints, dependencies, and package.json's
runs-on: ubuntu-latest
steps:
- run: echo "Skipped"
build-lint-test:
needs: check
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
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@v4
- name: β¬’ Set up Node.js
uses: actions/setup-node@v4
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: π‘ Test Types
run: yarn test:types
- 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-skip:
needs: detect-changes
if: needs.detect-changes.outputs.onlydocs == 'true'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: π Build, lint, test / ${{ matrix.os }} / node 18 latest
runs-on: ${{ matrix.os }}
steps:
- run: echo "Skipped"
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@v4
- name: β¬’ Set up Node.js
uses: actions/setup-node@v4
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-skip:
needs: detect-changes
if: needs.detect-changes.outputs.onlydocs == 'true'
strategy:
matrix:
bundler: [vite, webpack]
name: π² Tutorial E2E / ${{ matrix.bundler }} / node 18 latest
runs-on: ubuntu-latest
steps:
- run: echo "Skipped"
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@v4
- name: β¬’ Set up Node.js
uses: actions/setup-node@v4
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-skip:
needs: detect-changes
if: needs.detect-changes.outputs.onlydocs == 'true'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
bundler: [vite, webpack]
name: π Smoke tests / ${{ matrix.os }} / ${{ matrix.bundler }} / node 18 latest
runs-on: ${{ matrix.os }}
steps:
- run: echo "Skipped"
telemetry-check:
needs: check
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
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@v4
- name: β¬’ Set up Node.js
uses: actions/setup-node@v4
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-skip:
needs: detect-changes
if: needs.detect-changes.outputs.onlydocs == 'true'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: π Telemetry check / ${{ matrix.os }} / node 18 latest
runs-on: ${{ matrix.os }}
steps:
- run: echo "Skipped"
rsc-smoke-tests:
needs: [check, detect-changes]
if: needs.detect-changes.outputs.rsc == 'true'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: ππ RSC Smoke tests / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
REDWOOD_CI: 1
REDWOOD_VERBOSE_TELEMETRY: 1
steps:
- uses: actions/checkout@v4
- name: β¬’ Set up Node.js
uses: actions/setup-node@v4
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 RSC project
id: set-up-rsc-project
uses: ./.github/actions/set-up-rsc-project
env:
REDWOOD_DISABLE_TELEMETRY: 1
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: π Install playwright dependencies
run: npx playwright install --with-deps chromium
- name: π Run RSC smoke tests
working-directory: tasks/smoke-tests/rsc
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: ${{ steps.set-up-rsc-project.outputs.rsc-project-path }}
REDWOOD_DISABLE_TELEMETRY: 1
- name: π² Set up RSA smoke test
id: set-up-rsa-project
uses: ./.github/actions/set-up-rsa-project
env:
REDWOOD_DISABLE_TELEMETRY: 1
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: π Run RSA smoke tests
working-directory: tasks/smoke-tests/rsa
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: ${{ steps.set-up-rsa-project.outputs.test-project-path }}
REDWOOD_DISABLE_TELEMETRY: 1
- name: π² Set up RSC external packages smoke test
id: set-up-rsc-external-packages-project
uses: ./.github/actions/set-up-rsc-external-packages-project
env:
REDWOOD_DISABLE_TELEMETRY: 1
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: π Run RSC external packages smoke tests
working-directory: tasks/smoke-tests/rsc-external-packages
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: ${{ steps.set-up-rsc-external-packages-project.outputs.test-project-path }}
REDWOOD_DISABLE_TELEMETRY: 1
rsc-smoke-tests-skip:
needs: detect-changes
if: needs.detect-changes.outputs.rsc == 'false'
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: ππ RSC Smoke tests / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- run: echo "Skipped"
ssr-smoke-tests:
needs: [check, detect-changes]
if: needs.detect-changes.outputs.ssr == 'true'
strategy:
matrix:
# TODO: add `windows-latest`.
os: [ubuntu-latest]
name: π SSR Smoke tests / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
REDWOOD_CI: 1
REDWOOD_VERBOSE_TELEMETRY: 1
steps:
- uses: actions/checkout@v4
- name: β¬’ Set up Node.js
uses: actions/setup-node@v4
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: vite
canary: true
env:
REDWOOD_DISABLE_TELEMETRY: 1
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: Run SSR codemods on test project
run: ./tasks/test-project/convert-to-ssr-fixture ${{ steps.set-up-test-project.outputs.test-project-path }}
env:
REDWOOD_DISABLE_TELEMETRY: 1
- name: π Install playwright dependencies
run: npx playwright install --with-deps chromium
- name: Run SSR [DEV] smoke tests
working-directory: ./tasks/smoke-tests/streaming-ssr-dev
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: '${{ steps.set-up-test-project.outputs.test-project-path }}'
REDWOOD_DISABLE_TELEMETRY: 1
- name: Build for production
working-directory: ${{ steps.set-up-test-project.outputs.test-project-path }}
run: yarn rw build --no-prerender
env:
REDWOOD_DISABLE_TELEMETRY: 1
- name: Run SSR [PROD] smoke tests
working-directory: ./tasks/smoke-tests/streaming-ssr-prod
run: npx playwright test
env:
REDWOOD_TEST_PROJECT_PATH: '${{ steps.set-up-test-project.outputs.test-project-path }}'
REDWOOD_DISABLE_TELEMETRY: 1
ssr-smoke-tests-skip:
needs: detect-changes
if: needs.detect-changes.outputs.ssr == 'false'
strategy:
matrix:
# TODO: add `windows-latest`.
os: [ubuntu-latest]
name: π SSR Smoke tests / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- run: echo "Skipped"