We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 616af5f + 94c63e1 commit 2c0d2b3Copy full SHA for 2c0d2b3
2 files changed
.github/workflows/pull_request.yml
@@ -31,5 +31,8 @@ jobs:
31
bunx tsc --noEmit
32
for f in $(find src -type f -name '*.test.ts' | sort); do
33
echo "Running $f"
34
- bun test "$f"
+ if ! bun test "$f"; then
35
+ echo "Retrying $f once after failure..."
36
+ bun test "$f"
37
+ fi
38
done
.github/workflows/release.yml
@@ -66,7 +66,10 @@ jobs:
66
set -euo pipefail
67
68
69
70
71
72
73
74
75
- name: Build
0 commit comments