We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 883363b commit 866620dCopy full SHA for 866620d
.github/workflows/ci.yml
@@ -8,7 +8,7 @@ jobs:
8
runs-on: ubuntu-latest
9
strategy:
10
matrix:
11
- nodejs: [6, 8, 10, 12]
+ nodejs: [8, 10, 12]
12
steps:
13
- uses: actions/checkout@v1
14
- uses: actions/setup-node@v1
@@ -22,12 +22,12 @@ jobs:
22
uses: actions/cache@master
23
with:
24
path: node_modules
25
- key: ${{ runner.os }}-${{ hashFiles('package.json') }}
+ key: ${{ runner.os }}-${{ hashFiles('**/package.json') }}
26
27
- name: Install
28
run: |
29
pnpm install
30
- pnpm add -g nyc
+ pnpm add -g nyc@13
31
32
- name: Test w/ Coverage
33
run: nyc --include=src pnpm test
0 commit comments