Skip to content

CI

CI #105

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 3'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm install
- name: Test
run: |
npm test
npm run covreport
- name: Upload coverage report to coveralls.io
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}