Skip to content

fixing some mypy stuff #1

fixing some mypy stuff

fixing some mypy stuff #1

Workflow file for this run

name: check
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
# Set up
- uses: actions/checkout@v4
- uses: actions/setup-node
with:
node-version: "20" # Oldest LTS at time of writing
- run: npm ci
# Run checks
- run: npm run format:check
- run: npm run lint:check
- run: npm run build