1 parent 382850b commit 5976df5Copy full SHA for 5976df5
1 file changed
.github/workflows/ci.yml
@@ -37,11 +37,13 @@ jobs:
37
38
- name: Cache Playwright browsers
39
uses: actions/cache@v5
40
+ id: playwright-cache
41
with:
42
path: ~/.cache/ms-playwright
43
key: playwright-${{ steps.playwright-version.outputs.version }}
44
45
- name: Install Playwright browsers
46
+ if: steps.playwright-cache.outputs.cache-hit != 'true'
47
run: npx playwright install --with-deps
48
49
- name: Run tests
0 commit comments