Skip to content

docs: update README.md馃尮 #106

docs: update README.md馃尮

docs: update README.md馃尮 #106

Workflow file for this run

name: Codecov
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
UnitTest:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.1.0
with:
version: 7.2.1
- name: Install modules
run: pnpm install
- name: Run Test
run: pnpm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage/coverage-final.json,./coverage/index.html,./coverage/clover.html
token: ${{ secrets.CODECOV_TOKEN }}