Skip to content

Commit

Permalink
added coverage to github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kwhitley committed May 31, 2023
1 parent 8d697d5 commit 7765cca
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on: ["push", "pull_request"]

name: 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, npm run coverage
run: |
npm install
npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@v2

0 comments on commit 7765cca

Please sign in to comment.