You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+48Lines changed: 48 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -154,6 +154,8 @@ jobs:
154
154
cd ${{ matrix.package }}
155
155
if [ "${{ matrix.package }}" = ".agents" ]; then
156
156
find __tests__ -name '*.test.ts' ! -name '*.integration.test.ts' 2>/dev/null | sort | xargs -I {} bun test {} || echo "No regular tests found in .agents"
157
+
elif [ "${{ matrix.package }}" = "web" ]; then
158
+
bun run test --runInBand
157
159
else
158
160
find src -name '*.test.ts' ! -name '*.integration.test.ts' | sort | xargs -I {} bun test {}
159
161
fi
@@ -244,6 +246,52 @@ jobs:
244
246
find src -name '*.integration.test.ts' | sort | xargs -I {} bun test {}
0 commit comments