Skip to content

Commit 16dbc86

Browse files
authored
Make shellcheck happier too
1 parent c855934 commit 16dbc86

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/on_call_staging_test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ jobs:
5454
curl -I -f http://localhost:8080/wiki/lego || exit_code=1
5555
5656
# Run BDD integration tests using docker compose
57-
echo "## BDD Test Results" >> $GITHUB_STEP_SUMMARY
58-
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
57+
echo "## BDD Test Results" >> "$GITHUB_STEP_SUMMARY"
58+
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY"
5959
docker compose -f docker-compose.yml -f docker-compose.ci.yml run test 2>&1 | tee bdd_output.txt
6060
bdd_result=$?
6161
@@ -64,13 +64,13 @@ jobs:
6464
awk '
6565
/^> orionrobots\.github\.io@/ { found=1 }
6666
found { print }
67-
' bdd_output.txt >> $GITHUB_STEP_SUMMARY
68-
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
67+
' bdd_output.txt >> "$GITHUB_STEP_SUMMARY"
68+
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY"
6969
7070
if [ $bdd_result -eq 0 ]; then
71-
echo "✅ BDD tests passed" >> $GITHUB_STEP_SUMMARY
71+
echo "✅ BDD tests passed" >> "$GITHUB_STEP_SUMMARY"
7272
else
73-
echo "❌ BDD tests failed" >> $GITHUB_STEP_SUMMARY
73+
echo "❌ BDD tests failed" >> "$GITHUB_STEP_SUMMARY"
7474
exit_code=1
7575
fi
7676

0 commit comments

Comments
 (0)