Skip to content

docs: expand AGENTS.md with comprehensive coding standards #9

docs: expand AGENTS.md with comprehensive coding standards

docs: expand AGENTS.md with comprehensive coding standards #9

Workflow file for this run

name: Code Quality
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run check
- name: Type check
run: bun run check-types
- name: Unit tests
run: bun run test:unit