@@ -17,61 +17,21 @@ jobs:
17
17
env :
18
18
TURBO_TOKEN : ${{ secrets.TURBO_TOKEN }}
19
19
TURBO_TEAM : ${{ vars.TURBO_TEAM }}
20
- strategy :
21
- fail-fast : false
22
- matrix :
23
- # Be sure to update all instances in this file and `pr-cleanup.yml` if updated
24
- project : [chromium, firefox, webkit]
25
20
steps :
26
21
- uses : actions/checkout@v4
27
- - uses : actions/setup-node@v4
28
- with :
29
- node-version : 18
30
-
31
22
- uses : pnpm/action-setup@v4
32
- name : Install pnpm
33
- id : pnpm-install
34
- with :
35
- run_install : false
36
-
37
- - name : Get pnpm store directory
38
- id : pnpm-cache
39
- shell : bash
40
- run : |
41
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
42
-
43
- - name : Cache node modules
44
- id : cache-node-modules
45
- uses : actions/cache@v4
46
- env :
47
- cache-name : cache-node-modules
23
+ - uses : actions/setup-node@v4
48
24
with :
49
- path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
50
- key : ${{ runner.os }}-pnpm-store-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
51
- restore-keys : |
52
- v1-${{ runner.os }}-pnpm-store-${{ env.cache-name }}-
53
- v1-${{ runner.os }}-pnpm-store-
54
- v1-${{ runner.os }}-
25
+ cache : pnpm
26
+ node-version : lts/*
55
27
56
28
- name : Install project dependencies
57
29
run : pnpm install
58
30
59
31
- name : Build packages
32
+ # This warms up the turborepo remote cache
60
33
run : pnpm build --output-logs=full --log-order=grouped
61
34
62
- # Caches build from either PR or next
63
- - name : Cache build
64
- id : cache-e2e-build
65
- uses : actions/cache@v4
66
- env :
67
- cache-name : cache-e2e-build
68
- with :
69
- path : |
70
- ./*
71
- !**/node_modules/**
72
- # Unique key for a workflow run. Should be invalidated in the next run
73
- key : ${{ runner.os }}-${{ matrix.project }}-${{ env.cache-name }}-${{ github.run_id }}
74
-
75
35
playwright-ct-test :
76
36
timeout-minutes : 30
77
37
needs : [install]
@@ -82,41 +42,17 @@ jobs:
82
42
strategy :
83
43
fail-fast : false
84
44
matrix :
85
- # Be sure to update all instances in this file and `pr-cleanup.yml` if updated
86
45
project : [chromium, firefox, webkit]
87
- # Add more shards here if needed
46
+ # Add more shards here if needed, but remember that the github required checks will have to be updated as well
88
47
shardIndex : [1, 2]
89
48
shardTotal : [2]
90
49
steps :
91
50
- uses : actions/checkout@v4
92
- - uses : actions/setup-node@v4
93
- with :
94
- node-version : 18
95
-
96
51
- uses : pnpm/action-setup@v4
97
- name : Install pnpm
98
- id : pnpm-install
99
- with :
100
- run_install : false
101
-
102
- - name : Get pnpm store directory
103
- id : pnpm-cache
104
- shell : bash
105
- run : |
106
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
107
-
108
- - name : Cache node modules
109
- id : cache-node-modules
110
- uses : actions/cache@v4
111
- env :
112
- cache-name : cache-node-modules
52
+ - uses : actions/setup-node@v4
113
53
with :
114
- path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
115
- key : ${{ runner.os }}-pnpm-store-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
116
- restore-keys : |
117
- v1-${{ runner.os }}-pnpm-store-${{ env.cache-name }}-
118
- v1-${{ runner.os }}-pnpm-store-
119
- v1-${{ runner.os }}-
54
+ cache : pnpm
55
+ node-version : lts/*
120
56
121
57
- name : Install project dependencies
122
58
run : pnpm install
@@ -136,21 +72,12 @@ jobs:
136
72
- name : Install Playwright Browsers
137
73
# TODO: Fix webkit caching when downloading from cache
138
74
# for some reason it doesn't work without installing again
139
- # if: steps.cache-playwright-browsers.outputs.cache-hit != 'true'
75
+ if : steps.cache-playwright-browsers.outputs.cache-hit != 'true' || matrix.project == 'webkit '
140
76
run : npx playwright install --with-deps
141
77
142
- - name : Restore build cache
143
- uses : actions/cache/restore@v4
144
- id : restore-build
145
- env :
146
- cache-name : cache-e2e-build
147
- with :
148
- path : |
149
- ./*
150
- !**/node_modules/**
151
- key : ${{ runner.os }}-${{ matrix.project }}-${{ env.cache-name }}-${{ github.run_id }}
152
- # If the cached build from the pervious step is not available. Fail the build
153
- fail-on-cache-miss : true
78
+ - name : Build packages
79
+ # This should take only a few seconds as it'll restore the remote cache that got primed in the `install` job
80
+ run : pnpm build --output-logs=full --log-order=grouped
154
81
155
82
- name : Run end-to-end tests
156
83
env :
@@ -171,34 +98,11 @@ jobs:
171
98
runs-on : ubuntu-latest
172
99
steps :
173
100
- uses : actions/checkout@v4
174
- - uses : actions/setup-node@v4
175
- with :
176
- node-version : 18
177
-
178
101
- uses : pnpm/action-setup@v4
179
- name : Install pnpm
180
- id : pnpm-install
181
- with :
182
- run_install : false
183
-
184
- - name : Get pnpm store directory
185
- id : pnpm-cache
186
- shell : bash
187
- run : |
188
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
189
-
190
- - name : Cache node modules
191
- id : cache-node-modules
192
- uses : actions/cache@v4
193
- env :
194
- cache-name : cache-node-modules
102
+ - uses : actions/setup-node@v4
195
103
with :
196
- path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
197
- key : ${{ runner.os }}-pnpm-store-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
198
- restore-keys : |
199
- v1-${{ runner.os }}-pnpm-store-${{ env.cache-name }}-
200
- v1-${{ runner.os }}-pnpm-store-
201
- v1-${{ runner.os }}-
104
+ cache : pnpm
105
+ node-version : lts/*
202
106
203
107
- name : Install project dependencies
204
108
run : pnpm install
@@ -213,15 +117,6 @@ jobs:
213
117
- name : Merge into HTML Report
214
118
run : npx playwright merge-reports --reporter json ${{ github.workspace }}/packages/sanity/playwright-ct/playwright-ct-report >> ${{ github.workspace }}/packages/sanity/playwright-ct/playwright-ct-report/playwright-ct-test-results.json
215
119
216
- - name : Get Current Job Log URL
217
- uses : Tiryoh/gha-jobid-action@be260d8673c9211a84cdcf37794ebd654ba81eef # v1
218
- id : job_html_url
219
- if : always()
220
- with :
221
- github_token : ${{ secrets.GITHUB_TOKEN }}
222
- # Get the first run's ID even though it might be correct it should bring to the right place
223
- job_name : " playwright-ct-test (chromium, 1, 2)"
224
-
225
120
- uses : actions/upload-artifact@v4
226
121
if : always()
227
122
with :
@@ -231,35 +126,3 @@ jobs:
231
126
${{ github.workspace }}/packages/sanity/playwright-ct/playwright-ct-report
232
127
${{ github.workspace }}/packages/sanity/playwright-ct/results
233
128
retention-days : 30
234
-
235
- cleanup :
236
- permissions :
237
- contents : read
238
- actions : write # needed to delete the cache
239
- timeout-minutes : 30
240
- name : Cleanup (${{ matrix.project }})
241
- runs-on : ubuntu-latest
242
- needs : [playwright-ct-test]
243
-
244
- strategy :
245
- # we want to know if a test fails on a specific node version
246
- fail-fast : false
247
- matrix :
248
- # Be sure to update all instances in this file and `pr-cleanup.yml` if updated
249
- project : [chromium, firefox, webkit]
250
-
251
- steps :
252
- - name : Checkout
253
- uses : actions/checkout@v4
254
-
255
- - name : Setup node
256
- uses : actions/setup-node@v4
257
- with :
258
- node-version : 18
259
-
260
- # Delete the cache so it is only used once
261
- - name : Delete Cache
262
- run : gh cache delete ${{ runner.os }}-${{ matrix.project }}-${{ env.cache-name }}-${{ github.run_id }}
263
- env :
264
- cache-name : cache-e2e-build
265
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments