Skip to content

Commit

Permalink
make sure packaging step's npm cache and testing step's npm cache are…
Browse files Browse the repository at this point in the history
… not shared
  • Loading branch information
cspotcode committed Jul 12, 2021
1 parent 82f5041 commit e865076
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -27,8 +27,8 @@ jobs:
uses: actions/cache@v2
with:
path: temp/npm-cache
key: npm-cache-ubuntu-${{ hashFiles('package-lock.json') }}
restore-keys: npm-cache-ubuntu-
key: npm-cache-packaging-${{ hashFiles('package-lock.json') }}
restore-keys: npm-cache-packaging-
# lint, build, test
- run: npm ci
- run: npm run lint
Expand Down

0 comments on commit e865076

Please sign in to comment.