Skip to content

Try to add codecov.

Try to add codecov. #5

Workflow file for this run

name: Workflow for Codecov example-typescript
on:
push:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run tests and generate coverage
run: npm run test -- --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # Required if the repo is private
files: ./coverage/lcov.info # Path to the lcov report
flags: unittests # Optional: Flag for specific test type
name: codecov-umbrella # Optional: Custom name for coverage report
fail_ci_if_error: true # Optional: Fail CI if upload fails