Skip to content

Commit

Permalink
debug(action): tweak cache settings
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed May 30, 2020
1 parent 883363b commit 866620d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [6, 8, 10, 12]
nodejs: [8, 10, 12]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
Expand All @@ -22,12 +22,12 @@ jobs:
uses: actions/cache@master
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('package.json') }}
key: ${{ runner.os }}-${{ hashFiles('**/package.json') }}

- name: Install
run: |
pnpm install
pnpm add -g nyc
pnpm add -g nyc@13
- name: Test w/ Coverage
run: nyc --include=src pnpm test
Expand Down

0 comments on commit 866620d

Please sign in to comment.