Skip to content

replace codacy to codecov #27

replace codacy to codecov

replace codacy to codecov #27

Workflow file for this run

name: Test
on:
pull_request:
branches:
- "**"
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: 18
- name: install, build, and test
run: |
yarn install
yarn build
yarn test
env:
CI: true
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: true
verbose: true