Skip to content

Commit

Permalink
feat: Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jaironalves committed Jul 10, 2024
1 parent 31668f0 commit 09f73b2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/scripts/test-action-output.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ else
expected_result_summary=$(printf "%s" "${expected_result//\\/\\\\}" | sed 's/ /·/g')
output_result_summary=$(printf "%s" "${output_result//\\/\\\\}" | sed 's/ /·/g')

echo "Expected Result:" >>"$GITHUB_STEP_SUMMARY"
echo "$expected_result_summary" >>"$GITHUB_STEP_SUMMARY"
{
echo "Expected Result:"
echo "$expected_result_summary"
echo ""
echo "Output Result:"
echo "$output_result_summary"
} >>"$GITHUB_STEP_SUMMARY"

echo "" >>"$GITHUB_STEP_SUMMARY"

echo "Output Result:" >>"$GITHUB_STEP_SUMMARY"
echo "$output_result_summary" >>"$GITHUB_STEP_SUMMARY"
exit 1
fi

0 comments on commit 09f73b2

Please sign in to comment.