Skip to content

Instantly share code, notes, and snippets.

@bistole
Created March 9, 2021 04:53
Show Gist options
  • Save bistole/dcada140cf65e874ba8e3321f7e3e40e to your computer and use it in GitHub Desktop.
Save bistole/dcada140cf65e874ba8e3321f7e3e40e to your computer and use it in GitHub Desktop.
on: ["push"]
name: coveralls
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: npm install, make test-coverage
run: |
npm install
npm run coverage
- name: coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment