Skip to content

chore(deps): bump codecov/codecov-action from 5.0.7 to 5.1.2 #974

chore(deps): bump codecov/codecov-action from 5.0.7 to 5.1.2

chore(deps): bump codecov/codecov-action from 5.0.7 to 5.1.2 #974

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'npm'
- name: Install Node dependencies
run: npm ci
- run: npm run lint
- run: npm run build
- name: Test coverage
run: npx jest test/ --collectCoverage=true
- name: Upload coverage to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}