Skip to content

Commit e5f117d

Browse files
Update tests.yml
1 parent c564713 commit e5f117d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/tests.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,15 @@ jobs:
3030
run: npm run test
3131
- name: Run Playwright tests
3232
run: npm run test:e2e
33-
- uses: actions/upload-artifact@v3.1.0 # Updated version
33+
- name: Check Playwright report directory
34+
run: |
35+
if [ ! -d "playwright-report" ]; then
36+
echo "Directory playwright-report does not exist."
37+
exit 1
38+
fi
39+
- name: Debugging Step
40+
run: ls -la playwright-report/
41+
- uses: actions/upload-artifact@v3
3442
if: always()
3543
with:
3644
name: playwright-report

0 commit comments

Comments
 (0)