Skip to content

Commit e865076

Browse files
authored
make sure packaging step's npm cache and testing step's npm cache are not shared
1 parent 82f5041 commit e865076

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
uses: actions/cache@v2
2828
with:
2929
path: temp/npm-cache
30-
key: npm-cache-ubuntu-${{ hashFiles('package-lock.json') }}
31-
restore-keys: npm-cache-ubuntu-
30+
key: npm-cache-packaging-${{ hashFiles('package-lock.json') }}
31+
restore-keys: npm-cache-packaging-
3232
# lint, build, test
3333
- run: npm ci
3434
- run: npm run lint

0 commit comments

Comments
 (0)