Skip to content

fix code coverage

fix code coverage #579

Workflow file for this run

name: Node.js CI
on:
push:
branch: master
pull_request:
branch: master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run test:coverage
- name: Codecov
if: ${{ contains(matrix.node-version, '22') }}
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
disable_search: true
files: ./coverage-reports/codecov.json