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
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@ jobs:
- name: Run tests
run: bun test

- name: Test migrations with demo seed
run: cd apps/mesh && SEED=demo bun run migrate

- name: Run knip
run: bun run knip
11 changes: 11 additions & 0 deletions apps/mesh/migrations/seeds/demo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* Demo Seed
*
* Re-export from the refactored demo seed structure.
* All implementation has been moved to the demo/ folder for better organization.
*
* @deprecated Import from './demo/index' directly
*/

export { seed } from "./demo/index";
export type { DemoSeedResult } from "./demo/index";
Loading