feat(regime)

This commit is contained in:
Dan Finch 2026-04-29 00:55:53 +02:00
commit 1f712c1c84
37 changed files with 1059 additions and 0 deletions

25
actions/checks/action.yml Normal file
View file

@ -0,0 +1,25 @@
name: Checks
description: Run lint, type-check, and tests
runs:
using: composite
steps:
- name: Setup Bun
shell: bash
run: curl -fsSL https://bun.sh/install | bash && echo "$HOME/.bun/bin" >> "$GITHUB_PATH"
- name: Install dependencies
shell: bash
run: bun install --frozen-lockfile
- name: Lint
shell: bash
run: bun run lint
- name: Type check
shell: bash
run: bun run check
- name: Test
shell: bash
run: bun run test