Skip to content

Commit

Permalink
Split test summary into CSS and WAAPI tests (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesodland authored Feb 9, 2024
1 parent 2c01630 commit 1c71677
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ jobs:
- name: Expected results
run: "npm run test:compare"
- name: Test results summary
run: echo "Passed $(grep -c '^PASS' ./test/report/summary.txt) of $(grep -c '^' ./test/report/summary.txt) tests" >> $GITHUB_STEP_SUMMARY
run: |
echo "Passed $(grep '/css' ./test/report/summary.txt | grep -c '^PASS' ) of $(grep '/css' ./test/report/summary.txt | grep -c '^') css tests" >> $GITHUB_STEP_SUMMARY
echo "Passed $(grep -v '/css' ./test/report/summary.txt | grep -c '^PASS' ) of $(grep -v '/css' ./test/report/summary.txt | grep -c '^') waapi tests" >> $GITHUB_STEP_SUMMARY
- name: Clean build files
run: "rm -rf node_modules test/wpt"
- name: Upload artifact
Expand Down

0 comments on commit 1c71677

Please sign in to comment.