Skip to content

Merge branch 'main' into fix-drug-chemical #467

Merge branch 'main' into fix-drug-chemical

Merge branch 'main' into fix-drug-chemical #467

Workflow file for this run

on: ["push", "pull_request"]
name: Test Coveralls
jobs:
test-coverage:
name: Generate coverage report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install, generate coverage report
run: |
npm install
npm run test-cov
- name: Send coverage report to coveralls for visualization
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
finish:
needs: test-coverage
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true