Skip to content

ci: automatically test on all LTS node versions #1

ci: automatically test on all LTS node versions

ci: automatically test on all LTS node versions #1

Workflow file for this run

on:
push:
paths-ignore:
- '*.md'
pull_request:
env:
CI: true
NODE_ENV: cov
jobs

Check failure on line 11 in .github/workflows/coverage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/coverage.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
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@v2
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}