Skip to content

Commit

Permalink
ci: minor fix in string
Browse files Browse the repository at this point in the history
  • Loading branch information
sdobbert committed Jun 27, 2024
1 parent 945ff12 commit 9189880
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
id: construct-input
run: |
if [ "${{ env.no_tests_found }}" == "true" ]; then
echo "MULTIPLE_FILES='All, ./coverage/all/coverage-summary.json'" >> $GITHUB_ENV
echo "MULTIPLE_FILES=All, ./coverage/all/coverage-summary.json" >> $GITHUB_ENV
else
echo "MULTIPLE_FILES='All, ./coverage/all/coverage-summary.json\nonly changed, ./coverage/changed/coverage-summary.json'" >> $GITHUB_ENV
echo "MULTIPLE_FILES=All, ./coverage/all/coverage-summary.json\nonly changed, ./coverage/changed/coverage-summary.json" >> $GITHUB_ENV
fi
- name: Jest Coverage Comment 💬
Expand Down

0 comments on commit 9189880

Please sign in to comment.