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 75f87db commit c511315Copy full SHA for c511315
1 file changed
.github/workflows/test-e2e.yaml
@@ -80,14 +80,16 @@ jobs:
80
run: npx playwright test
81
working-directory: tests
82
env:
83
+ PLAYWRIGHT_SERVICE_URL: ${{ secrets.PLAYWRIGHT_SERVICE_URL }}
84
STORE_ADMIN_URL: ${{ steps.kubectl_get_service.outputs.STORE_ADMIN_IP }}
85
STORE_FRONT_URL: ${{ steps.kubectl_get_service.outputs.STORE_FRONT_IP }}
86
+ CI: true
87
- - uses: actions/upload-artifact@v3
- if: always()
88
+ - uses: actions/upload-artifact@v4
89
+ if: ${{ !cancelled() }}
90
with:
- name: playwright-report-store-admin
- path: tests/playwright-report
91
+ name: playwright-report
92
+ path: tests/playwright-report/
93
retention-days: 30
94
95
- name: Destroy environment
0 commit comments