Skip to content

Commit

Permalink
ci: cache NPM dependencies (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Apr 26, 2022
1 parent 3064b58 commit 9881cf4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,13 @@ jobs:
with:
node-version: '14.x'

- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Playwrigth dependencies
working-directory: conformance-tests/
run: npm ci
Expand Down

0 comments on commit 9881cf4

Please sign in to comment.