Skip to content

Commit 13d0368

Browse files
fix: upload test report json
1 parent 9c3176f commit 13d0368

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/quality.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,10 @@ jobs:
189189
rm -rf gh-pages/$REPORT_DIR
190190
mkdir -p gh-pages/$REPORT_DIR
191191
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
192196
193197
- name: Deploy report to GitHub Pages
194198
uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)