Skip to content

ci: automatically test on all LTS node #19

ci: automatically test on all LTS node

ci: automatically test on all LTS node #19

Workflow file for this run

name: coverage
on:
push:
paths-ignore:
- '*.md'
pull_request:
env:
CI: true
NODE_ENV: cov
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
- uses: actions/checkout@v4
- run: npm install
- name: run coverage
run: npx -y c8 --reporter=lcov npm test
- name: codecov
uses: codecov/codecov-action@v3
# - name: Coveralls
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.github_token }}