Skip to content

chore: Format

chore: Format #70

Workflow file for this run

name: Codecov
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Git
run: |
git config --global user.name "Richtypo Bot"
git config --global user.email "${BOT_EMAIL}"
env:
BOT_EMAIL: ${{ secrets.BOT_EMAIL }}
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'npm'
- run: npm ci
- run: npm run test:coverage
- uses: codecov/codecov-action@v2