Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
demmings committed Dec 23, 2024
2 parents df25420 + e5d0c5b commit 97479cf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on: ["push", "pull_request"]

name: Test Coveralls

jobs:

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

- uses: actions/checkout@master

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

- name: npm install, make test-coverage
run: |
npm install
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./coverage/tests.lcov"
base-path: "./src"

0 comments on commit 97479cf

Please sign in to comment.