Skip to content

Commit

Permalink
feat: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jaironalves committed Jul 9, 2024
1 parent 6e203a2 commit 7561801
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,16 @@ jobs:
expected_result=$(printf "%b" "### Heading\n\n* Bullet C:\\\\\\\\ E:\\\\\n* Driver D:\\\\\n* Points")
expected_result_escaped=$(printf "%s" "${expected_result//\\/\\\\}")
output_result="${{ steps.test-action.outputs.app-build_multiline }}"
output_result_escaped=$(printf "%s" "${output_result//\\/\\\\}")
echo "Expected Result:"
echo "$expected_result"
echo ""
echo "Output Result:"
echo "$output_result"
if [[ "$output_result" != "$expected_result" ]]; then
echo "Test Passed: $test_name"
echo "### :white_check_mark: Test Passed: $test_name" >> $GITHUB_STEP_SUMMARY
Expand All @@ -104,6 +110,7 @@ jobs:
echo "Expected Result:" >> $GITHUB_STEP_SUMMARY
echo "$expected_result_escaped" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "Output Result:" >> $GITHUB_STEP_SUMMARY
Expand Down

0 comments on commit 7561801

Please sign in to comment.