We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c941ada + 41886e2 commit 787b693Copy full SHA for 787b693
.github/workflows/on_call_staging_test.yaml
@@ -58,7 +58,13 @@ jobs:
58
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
59
docker compose -f docker-compose.yml -f docker-compose.ci.yml run test 2>&1 | tee bdd_output.txt
60
bdd_result=$?
61
- cat bdd_output.txt >> $GITHUB_STEP_SUMMARY
+
62
+ # Filter output to show only BDD test results, excluding Docker build output
63
+ # Look for lines starting with "> orionrobots.github.io@" and capture everything after that
64
+ awk '
65
+ /^> orionrobots\.github\.io@/ { found=1 }
66
+ found { print }
67
+ ' bdd_output.txt >> $GITHUB_STEP_SUMMARY
68
69
70
if [ $bdd_result -eq 0 ]; then
0 commit comments