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 9c3176f commit 13d0368Copy full SHA for 13d0368
.github/workflows/quality.yml
@@ -189,6 +189,10 @@ jobs:
189
rm -rf gh-pages/$REPORT_DIR
190
mkdir -p gh-pages/$REPORT_DIR
191
cp -r playwright-artifacts/playwright-report/* gh-pages/$REPORT_DIR/
192
+ # Also copy test-results.json if it exists
193
+ if [ -f "playwright-artifacts/test-results.json" ]; then
194
+ cp playwright-artifacts/test-results.json gh-pages/$REPORT_DIR/
195
+ fi
196
197
- name: Deploy report to GitHub Pages
198
uses: peaceiris/actions-gh-pages@v3
0 commit comments