We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6692032 commit 4208fc7Copy full SHA for 4208fc7
.github/workflows/phpunit-coverage.yml
@@ -45,7 +45,7 @@ jobs:
45
# Run tests and capture coverage output
46
coverage_output=$(npm run test-php-coverage -- --coverage-text)
47
# Extract only the coverage report section
48
- filtered_output=$(echo "$coverage_output" | sed -n '/^ Summary:/,$p' | sed 's/ */ /g')
+ filtered_output=$(echo "$coverage_output" | sed -n '/^Code Coverage Report:/,$p')
49
echo "$filtered_output" | tee coverage-summary.txt
50
echo "coverage_summary<<EOF" >> $GITHUB_ENV
51
echo "$filtered_output" >> $GITHUB_ENV
@@ -67,7 +67,7 @@ jobs:
67
body: |
68
## PHPUnit Coverage Report
69
70
- ```plaintext
+ ```yaml
71
${{ env.coverage_summary }}
72
```
73
edit-mode: replace
0 commit comments