Skip to content

Commit

Permalink
Create coverage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ckesanapalli committed Dec 12, 2023
1 parent 6178542 commit 3ed90c9
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 @@

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

0 comments on commit 3ed90c9

Please sign in to comment.