fix: minor performance improvements #3
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: Coverage report | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
coverage: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
- name: Install dependencies | |
run: npm install | |
- name: Generage coverage report | |
run: npm run coverage | |
- name: Push changes | |
run: | | |
git config --global user.name "Albus" | |
git config --global user.email "[email protected]" | |
git add .; git commit -m "chore: update coverage report" | |
git push |