Skip to content

chore: fix my ocd

chore: fix my ocd #2

Workflow file for this run

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