Skip to content

Commit 34cf1f8

Browse files
Revert "fix retry workflow logic"
This reverts commit 219a207.
1 parent 6fd9572 commit 34cf1f8

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/bun-test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,8 @@ jobs:
8181
echo "Running tests in $test_file"
8282
attempt=1
8383
while [ $attempt -le 4 ]; do
84-
if bun test "$test_file" --timeout 30000; then
85-
code=0
86-
else
87-
code=$?
88-
fi
84+
bun test "$test_file" --timeout 30000
85+
code=$?
8986
9087
if [ $code -eq 0 ]; then
9188
break

0 commit comments

Comments
 (0)