File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -387,6 +387,10 @@ jobs:
387387 - name : Debug - Check for console logs
388388 if : failure() || cancelled()
389389 run : |
390+ echo "=== Metro health ==="
391+ curl -s --max-time 5 http://localhost:8081/status || echo "Metro not responding"
392+ echo "=== Metro process ==="
393+ lsof -i:8081 | head -5 || echo "Nothing on port 8081"
390394 echo "=== Simulator logs (last 5m) ==="
391395 xcrun simctl spawn booted log show --predicate 'processImagePath CONTAINS "RiveExample"' --last 5m --style compact 2>&1 | tail -200 || echo "No logs found"
392396 echo "=== System log for Metro/Node ==="
@@ -582,6 +586,10 @@ jobs:
582586 - name : Debug - Check for console logs
583587 if : failure()
584588 run : |
589+ echo "=== Metro health ==="
590+ curl -s --max-time 5 http://localhost:8081/status || echo "Metro not responding"
591+ echo "=== Metro process ==="
592+ lsof -i:8081 | head -5 || echo "Nothing on port 8081"
585593 echo "=== Checking simulator logs for errors ==="
586594 xcrun simctl spawn booted log show --predicate 'processImagePath CONTAINS "RiveExample"' --last 5m --style compact 2>&1 | tail -200 || echo "No logs found"
587595
You can’t perform that action at this time.
0 commit comments