Skip to content

coverage

coverage #1

Workflow file for this run

on: push
name: Coveralls
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: npm install, make test-coverage
run: |
npm install
make test-coverage
- name: Report Coveralls
uses: coverallsapp/github-action@v2