Skip to content

[codex] ROY-32: Add healthcheck endpoint to ADHD.ai CLI #43

[codex] ROY-32: Add healthcheck endpoint to ADHD.ai CLI

[codex] ROY-32: Add healthcheck endpoint to ADHD.ai CLI #43

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
check:
name: Check, typecheck, and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check formatting and lint
run: bun run check
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun test