Skip to content

Commit

Permalink
Update test.yml (twbs#29863)
Browse files Browse the repository at this point in the history
Fix cache name
  • Loading branch information
XhmikosR authored and olsza committed Oct 3, 2020
1 parent ffc78fd commit 37b43ac
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -30,11 +30,10 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-v{{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/test.yml') }}
key: ${{ runner.os }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/test.yml') }}
restore-keys: |
${{ runner.OS }}-node-v{{ matrix.node }}-${{ env.cache-name }}-
${{ runner.OS }}-node-v{{ matrix.node }}-
${{ runner.OS }}-
${{ runner.OS }}-node-v${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/test.yml') }}
${{ runner.OS }}-node-v${{ matrix.node }}-
- name: Install npm dependencies
run: npm ci
Expand Down

0 comments on commit 37b43ac

Please sign in to comment.