File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
.github/actions/install-playwright Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 2121 ~/.cache/ms-playwright
2222 key : playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
2323
24- # Only store cache on develop branch
25- - name : Store cached playwright binaries
26- uses : actions/cache/save@v4
27- if : github.event_name == 'push' && github.ref == 'refs/heads/develop'
28- with :
29- path : |
30- ~/.cache/ms-playwright
31- key : playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
32-
3324 # We always install all browsers, if uncached
3425 - name : Install Playwright dependencies (uncached)
3526 run : npx playwright install chromium webkit firefox --with-deps
4031 run : npx playwright install-deps ${{ inputs.browsers || 'chromium webkit firefox' }}
4132 if : steps.playwright-cache.outputs.cache-hit == 'true'
4233 shell : bash
34+
35+ # Only store cache on develop branch
36+ - name : Store cached playwright binaries
37+ uses : actions/cache/save@v4
38+ if : github.event_name == 'push' && github.ref == 'refs/heads/develop'
39+ with :
40+ path : |
41+ ~/.cache/ms-playwright
42+ key : playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
You can’t perform that action at this time.
0 commit comments