Skip to content

Commit

Permalink
ci: add coveralls wf
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-berlin committed Aug 7, 2022
1 parent 91dcfb8 commit cf18c2c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test-coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on: ["push", "pull_request"]

name: Test Coveralls

jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v1

- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x

- name: npm install, make test-coverage
run: |
npm install
make test-coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GH_TOKEN }}

0 comments on commit cf18c2c

Please sign in to comment.