Skip to content

Commit 7f7cbe1

Browse files
committed
Automatically retry bun test
1 parent d002ba7 commit 7f7cbe1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,7 @@ jobs:
166166
cd integration/${{ matrix.suite }}
167167
bun uninstall replicate
168168
bun install "file:../../${{ needs.build.outputs.tarball-name }}"
169-
bun test
169+
retries=3
170+
for ((i=0; i<retries; i++)); do
171+
bun test && break || echo "Test failed, retrying..."
172+
done

0 commit comments

Comments
 (0)