Skip to content

Commit 696da3c

Browse files
ci: fix code coverage file steps
1 parent 8845dff commit 696da3c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/frontend-test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,13 @@ jobs:
5858
badge: true
5959
format: markdown
6060
output: both
61+
62+
# 4. PUSH TO SUMMARY PAGE
63+
- name: Write to Job Summary
64+
if: github.event_name == 'pull_request'
65+
run: |
66+
if [ -f "code-coverage-results.md" ]; then
67+
cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY
68+
else
69+
echo "Coverage file not found"
70+
fi

0 commit comments

Comments
 (0)