Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile

- name: Build
run: bun run build

- name: Typecheck
run: bun run lint
run: bun run typecheck

# The gates run before the suite deliberately. They were all green-boarded
# before this job existed, and one red test must not be able to skip them:
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"prepack": "bun run scan:artifact",
"postinstall": "mkdir -p $HOME/.hasna/monitor 2>/dev/null || true",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "bunx tsc --noEmit",
"monitor": "bun run ./bins/monitor.ts",
"monitor-mcp": "bun run ./bins/monitor-mcp.ts",
Expand Down
Loading