Skip to content

chore: update nyc to v15 #112

chore: update nyc to v15

chore: update nyc to v15 #112

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version:
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install

Check failure on line 35 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
- name: test with coverage
- run: npm run test-with-coverage
- if: matrix.node-version >= 10
- name: test without coverage (coverage broken on node < 10)
- run: npm run test
- if: matrix.node-version < 10
- run: npm run lint
- run: npm run gendocs
- run: npm run check-node-support
- name: Check for modified files (skip on Windows)
run: npm run after-travis
if: matrix.os != 'windows-latest'
- name: Upload coverage reports to Codecov
if: matrix.node-version >= 10
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true