Update dependencies: c8 to 7.1.2 (work around c8 coverage bug on Node 10).

This commit is contained in:
David Anson 2020-05-14 21:27:36 -07:00
parent 87aac66d68
commit a66892a6bb
2 changed files with 6 additions and 2 deletions

View file

@ -24,5 +24,9 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install --no-package-lock
- name: Run Tests
- name: Run All Validations
if: ${{ matrix.node-version != '10.x' }}
run: npm run ci
- name: Run Tests Only
if: ${{ matrix.node-version == '10.x' }}
run: npm run test