Skip to content

Commit

Permalink
workaround actions/cache#95
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Dec 20, 2019
1 parent 62bc432 commit a6b4865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Expand Up @@ -24,14 +24,14 @@ jobs:
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Get yarn cache
uses: actions/cache@v1
with:
path: ${{ steps.env.outputs.yarn-cache-dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Generate coverage report
Expand Down

0 comments on commit a6b4865

Please sign in to comment.