File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ jobs:
131
131
run : docker compose run --rm php bin/console doctrine:fixtures:load --no-interaction
132
132
-
133
133
name : Cache Playwright Binaries
134
+ id : playwright-cache
134
135
uses : actions/cache@v3
135
136
with :
136
137
path : ~/.cache/ms-playwright
@@ -153,9 +154,15 @@ jobs:
153
154
working-directory : pwa
154
155
run : pnpm install
155
156
-
156
- name : Install Playwright Browsers
157
+ name : Install Playwright Browsers with Deps
158
+ if : steps.playwright-cache.outputs.cache-hit != 'true'
157
159
working-directory : pwa
158
160
run : pnpm exec playwright install --with-deps
161
+ -
162
+ name : Install Playwright Browsers
163
+ if : steps.playwright-cache.outputs.cache-hit == 'true'
164
+ working-directory : pwa
165
+ run : pnpm exec playwright install
159
166
-
160
167
name : Run Playwright @read
161
168
working-directory : pwa
You can’t perform that action at this time.
0 commit comments