We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e8b44a commit 6c81eb2Copy full SHA for 6c81eb2
.github/composite-actions/cypress-e2e/action.yml
@@ -28,6 +28,15 @@ runs:
28
- run: pnpm setup-dev
29
shell: bash
30
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
+
40
- name: Start Backend API Server
41
42
run: pnpm --filter @inkeep/agents-manage-api dev & # & means run job in background
0 commit comments