Skip to content

Commit

Permalink
Create coveralls.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
csiefer2 authored Jun 21, 2024
1 parent 4b7b70e commit 1604093
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/coveralls.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1604093

Please sign in to comment.