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
fix: use file redirect instead of tee for Bun crash resilience
The previous approach using `tee` failed because when Bun segfaults,
the pipe breaks and tee doesn't flush output to the file. The grep
then finds no summary and reports "crashed before producing results"
even though all tests passed.
Fix: redirect bun output to file directly (`> file 2>&1 || true`),
then `cat` it for CI log visibility. Use portable `awk` instead of
`grep -oP` for summary extraction.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments