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 ee5c0bc commit 6692032Copy full SHA for 6692032
.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')
+ filtered_output=$(echo "$coverage_output" | sed -n '/^ Summary:/,$p' | sed 's/ */ /g')
49
echo "$filtered_output" | tee coverage-summary.txt
50
echo "coverage_summary<<EOF" >> $GITHUB_ENV
51
echo "$filtered_output" >> $GITHUB_ENV
0 commit comments