- Build: Add Github workflows

- Docs: Indicate current coverage on README
This commit is contained in:
Brett Zamir
2019-11-24 17:06:07 +08:00
parent c3c9b0f54d
commit 1930d01007
4 changed files with 90 additions and 0 deletions

16
.github/workflows/coverage.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: Coverage
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Coverage
run: |
npm ci
npm run test-cov
exit 0