There was an error while loading. Please reload this page.
1 parent 8e46a4b commit 13bd61aCopy full SHA for 13bd61a
1 file changed
.github/workflows/test-runner.yml
@@ -60,13 +60,15 @@ jobs:
60
path: ~/.cache/ms-playwright
61
key: playwright-${{ runner.os }}-latest
62
restore-keys: |
63
+ playwright-${{ runner.os }}-latest
64
playwright-${{ runner.os }}-
65
66
- name: Install and update Playwright
- if: steps.playwright-cache.outputs.cache-hit != 'true'
67
run: |
68
- npm install playwright@latest
69
- npx playwright install --with-deps
+ if [ ! -d ~/.cache/ms-playwright ]; then
+ npm install playwright@latest
70
+ npx playwright install --with-deps
71
+ fi
72
73
- name: Validate composer.json and composer.lock
74
run: composer validate --strict
0 commit comments