Skip to content

docs: add phases 14-17 to PLAN.md (#13) #18

docs: add phases 14-17 to PLAN.md (#13)

docs: add phases 14-17 to PLAN.md (#13) #18

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm ci
- name: Type check
run: npm run typecheck
- name: Format check
run: npm run format:check
- name: Unit tests
run: npm test