Skip to content

Commit 6c81eb2

Browse files
committed
add missing org db seed
1 parent 0e8b44a commit 6c81eb2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/composite-actions/cypress-e2e/action.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ runs:
2828
- run: pnpm setup-dev
2929
shell: bash
3030

31+
- name: Seed default organization for CI
32+
shell: bash
33+
run: |
34+
PGPASSWORD=password psql -h localhost -U appuser -d inkeep_agents -c "
35+
INSERT INTO organization (id, name, slug, created_at)
36+
VALUES ('default', 'Default Organization', 'default', NOW())
37+
ON CONFLICT (id) DO NOTHING;
38+
"
39+
3140
- name: Start Backend API Server
3241
shell: bash
3342
run: pnpm --filter @inkeep/agents-manage-api dev & # & means run job in background

0 commit comments

Comments
 (0)