Skip to content

fix: Show language name with -s option to resolve an indeterminate la… #6

fix: Show language name with -s option to resolve an indeterminate la…

fix: Show language name with -s option to resolve an indeterminate la… #6

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: coverage
on:
push:
paths:
- 'test/**'
pull_request:
paths:
- 'test/**'
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run test
run: npm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
file: ./coverage/clover.xml
flags: unittests
name: codecov-umbrella
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}