diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 0000000..cf55d4c --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,24 @@ + +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