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 11032f5 commit 74070c1Copy full SHA for 74070c1
.github/workflows/ci.yml
@@ -86,6 +86,7 @@ jobs:
86
[
87
.agents,
88
backend,
89
+ cli,
90
common,
91
npm-app,
92
packages/agent-runtime,
@@ -97,6 +98,7 @@ jobs:
97
98
include:
99
- package: .agents
100
- package: backend
101
+ - package: cli
102
- package: common
103
- package: npm-app
104
- package: packages/agent-runtime
@@ -256,6 +258,8 @@ jobs:
256
258
else
257
259
echo "No integration tests found in .agents"
260
fi
261
+ elif [ "${{ matrix.package }}" = "cli" ]; then
262
+ find src -name '*.integration.test.ts' | sort | xargs -I {} bun test --timeout=180000 {}
263
264
find src -name '*.integration.test.ts' | sort | xargs -I {} bun test --timeout=60000 {}
265
0 commit comments