This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
Update README.md (#330) #743
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Coverage | |
on: | |
- push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '12.x' | |
- name: npm install | |
run: npm i | |
- name: npm test | |
run: npm t -- --coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 |