Skip to content

docs: sync all project docs to current codebase state #151

docs: sync all project docs to current codebase state

docs: sync all project docs to current codebase state #151

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
name: Lint, Typecheck & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci
- name: Audit dependencies
run: npm audit --audit-level=high
- name: Lint
run: npx eslint .
- name: Typecheck
run: npx tsc --noEmit
- name: Test
run: npm test
- name: Build
run: npm run build