File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -167,10 +167,19 @@ jobs:
167167 continue-on-error : true
168168 run : ${{env.docker_compose_cmd}} exec -T e2e yarn test:ci
169169
170+ - name : Debug - List e2e artifacts
171+ if : ${{ always() }}
172+ run : |
173+ echo "Checking for playwright report..."
174+ ${{env.docker_compose_cmd}} exec -T e2e find . -name "playwright-report" -o -name "*report*" -type d 2>/dev/null || echo "No report found"
175+ echo "Listing e2e directory contents:"
176+ ${{env.docker_compose_cmd}} exec -T e2e ls -la
177+
170178 - uses : actions/upload-artifact@v4
179+ if : ${{ always() }}
171180 with :
172181 name : playwright-report
173- path : playwright-report/
182+ path : front/e2e/ playwright-report/
174183 retention-days : 30
175184
176185 - name : Frontend Coverage Report
You can’t perform that action at this time.
0 commit comments