Skip to content

Merge pull request #13 from gleep52/codex/chatbot-integration #84

Merge pull request #13 from gleep52/codex/chatbot-integration

Merge pull request #13 from gleep52/codex/chatbot-integration #84

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
# postinstall builds the CSS bundle; the rest are explicit gates.
- run: npm ci
- run: npm run lint
- run: npm run format:check
- run: npm run typecheck
- run: npm test
- run: npm run build