From 866620d50031393fce55ee28ed6efcbce5d53413 Mon Sep 17 00:00:00 2001 From: Luke Edwards Date: Fri, 29 May 2020 23:02:14 -0700 Subject: [PATCH] debug(action): tweak cache settings --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51e2b97..8979bb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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