Skip to content

Commit

Permalink
feat: ensure playwright browsers cahche is always saved
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurgeron committed Dec 10, 2024
1 parent e634590 commit a60e097
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/actions/e2e-tests-contracts/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,11 @@ runs:
- name: Stop Test Node
shell: bash
run: pnpm node:clean

- name: Save Playwright browsers cache
if: always()
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os + '-playwright-' + (inputs.browser == 'chromium' || inputs.browser == 'chrome-beta' ? 'default' : inputs.browser) }}

0 comments on commit a60e097

Please sign in to comment.