diff --git a/.github/workflows/coverall_test.yml b/.github/workflows/coverall_test.yml new file mode 100644 index 0000000..1d12740 --- /dev/null +++ b/.github/workflows/coverall_test.yml @@ -0,0 +1,25 @@ +on: ["push", "pull_request"] + +name: Test Coveralls + +jobs: + + build: + name: Build + runs-on: ubuntu-latest + steps: + + - uses: actions/checkout@v1 + + - 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: Coveralls + uses: coverallsapp/github-action@v2