Files
svgedit/.github/workflows/coverage.yml
Brett Zamir 1930d01007 - Build: Add Github workflows
- Docs: Indicate current coverage on README
2019-11-24 17:06:35 +08:00

17 lines
204 B
YAML

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