Skip to content

chore(deps): bump codecov/codecov-action from 6 to 7 (#90) #204

chore(deps): bump codecov/codecov-action from 6 to 7 (#90)

chore(deps): bump codecov/codecov-action from 6 to 7 (#90) #204

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16, 18, 20, lts/*, latest ]
steps:
- name: Clone repository
uses: actions/checkout@v7
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
npm ci
npm install -g codecov
- name: Unit test
run: npm run coverage
- name: Upload coverage
uses: codecov/codecov-action@v7
with:
files: ./lcov.info
token: ${{ secrets.CODECOV_TOKEN }}