File tree 1 file changed +9
-9
lines changed
.github/actions/install-playwright
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 21
21
~/.cache/ms-playwright
22
22
key : playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
23
23
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
-
33
24
# We always install all browsers, if uncached
34
25
- name : Install Playwright dependencies (uncached)
35
26
run : npx playwright install chromium webkit firefox --with-deps
40
31
run : npx playwright install-deps ${{ inputs.browsers || 'chromium webkit firefox' }}
41
32
if : steps.playwright-cache.outputs.cache-hit == 'true'
42
33
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