Skip to content

feat: add CI workflow, biome, tests, and pre-commit hook #1

feat: add CI workflow, biome, tests, and pre-commit hook

feat: add CI workflow, biome, tests, and pre-commit hook #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- run: npm ci --ignore-scripts
- run: npm run lint
- run: npm run typecheck
- run: npm run test
- run: npm run build