Skip to content

Commit 866620d

Browse files
committedMay 30, 2020
debug(action): tweak cache settings
1 parent 883363b commit 866620d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
nodejs: [6, 8, 10, 12]
11+
nodejs: [8, 10, 12]
1212
steps:
1313
- uses: actions/checkout@v1
1414
- uses: actions/setup-node@v1
@@ -22,12 +22,12 @@ jobs:
2222
uses: actions/cache@master
2323
with:
2424
path: node_modules
25-
key: ${{ runner.os }}-${{ hashFiles('package.json') }}
25+
key: ${{ runner.os }}-${{ hashFiles('**/package.json') }}
2626

2727
- name: Install
2828
run: |
2929
pnpm install
30-
pnpm add -g nyc
30+
pnpm add -g nyc@13
3131
3232
- name: Test w/ Coverage
3333
run: nyc --include=src pnpm test

0 commit comments

Comments
 (0)
Please sign in to comment.