Skip to content

Commit

Permalink
move playwright browser cache up
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrewgdewar committed Jan 29, 2025
1 parent 888aaa5 commit adae038
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/playwright-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,15 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Cache Playwright browsers
id: cache-playwright-browsers
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Run get_go_version.sh script
id: get-go-version
run: |
Expand Down Expand Up @@ -172,15 +181,6 @@ jobs:
working-directory: content-sources-frontend
run: yarn install

- name: Cache Playwright browsers
id: cache-playwright-browsers
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install front-end Playwright Browsers
working-directory: content-sources-frontend
run: yarn playwright install --with-deps
Expand Down

0 comments on commit adae038

Please sign in to comment.