Skip to content

Commit

Permalink
Make sure Puppeteer's Chrome is cached
Browse files Browse the repository at this point in the history
  • Loading branch information
Xophmeister committed Jan 30, 2024
1 parent e124a26 commit c070b79
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ jobs:
authToken: "${{ secrets.CACHIX_TWEAG_TOPIARY_AUTH_TOKEN }}"

- name: Set up frontend cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: '**/node_modules'
key: node_modules-${{ hashFiles('**/package-lock.json')}}
path:
- '**/node_modules'
- '~/.cache/puppeteer'
key: frontend_${{ matrix.os }}_${{ hashFiles('**/package-lock.json') }}

# - name: Clippy, test, and benchmark
# if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit c070b79

Please sign in to comment.