Skip to content

Commit

Permalink
ci: coveralls workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanmylee committed May 10, 2022
1 parent ab4cc43 commit 0f07797
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: coveralls test coverage

on:
push:
branches:
- main
pull_request:
release:
types:
- created

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16
- run: npm ci
- run: npm test
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 0f07797

Please sign in to comment.