Skip to content

Commit

Permalink
ci(github/e2e_test): correct directory for saving browser binary files
Browse files Browse the repository at this point in the history
  • Loading branch information
kubosho committed Jul 21, 2024
1 parent d477833 commit e8822d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ jobs:
id: cache-playwright-browsers
uses: actions/cache@v4
with:
key: playwright-browsers-${{ runner.os }}-${{ env.PLAYWRIGHT_VERSION }}
path: ~/.cache/playwright
key: playwright-browsers-linux-${{ env.PLAYWRIGHT_VERSION }}
# On Linux, browser binaries are saved in `~/.cache/ms-playwright`.
# https://playwright.dev/docs/browsers#managing-browser-binaries
path: ~/.cache/ms-playwright

- name: Install Playwright system dependencies
if: steps.cache-playwright-browsers.outputs.cache-hit == 'true'
Expand Down

0 comments on commit e8822d2

Please sign in to comment.