Skip to content

chore(deps): bump codecov/codecov-action from 4.1.1 to 4.3.1 #836

chore(deps): bump codecov/codecov-action from 4.1.1 to 4.3.1

chore(deps): bump codecov/codecov-action from 4.1.1 to 4.3.1 #836

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: 'yarn'
- name: Install Node dependencies
run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn build
- name: Test coverage
run: yarn jest test/ --collectCoverage=true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.3.1
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}