Skip to content

Commit

Permalink
Create coveralls.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
prof-schnitzel committed Aug 1, 2020
1 parent 24fe7d7 commit daf61f4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on: ["push", "pull_request"]

name: Coveralls Code Coverage

jobs:

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

- uses: actions/checkout@v1

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

- name: npm install, npm run test
run: |
npm install
npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit daf61f4

Please sign in to comment.