Skip to content
Draft
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
4 changes: 4 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
- name: Run validation script
run: bun validate

- name: Core tests
run: bun test
working-directory: packages/core

- name: SDK tests
run: bun run test
working-directory: packages/sdk
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- **Validate**: `bun validate` - Validates all provider/model configurations
- **Build web**: `cd packages/web && bun run build` - Builds the web interface
- **Dev server**: `cd packages/web && bun run dev` - Runs development server
- **No test framework** - No dedicated test commands found
- **Test**: `bun test` - Runs the core catalog tests (`packages/core/test`, includes repository-wide data invariants) and SDK unit tests; `cd packages/sdk && bun run test` additionally runs SDK codegen + typecheck

## Code Style
- **Runtime**: Bun with TypeScript ESM modules
Expand Down
Loading