diff --git a/.github/workflows/e2e_client.yml b/.github/workflows/e2e_client.yml index 9835b082..f6609cb8 100644 --- a/.github/workflows/e2e_client.yml +++ b/.github/workflows/e2e_client.yml @@ -37,16 +37,16 @@ jobs: - name: Run Playwright tests run: yarn playwright test - - uses: actions/upload-artifact@v3 - if: always() - with: - name: playwright-report - path: playwright-report/ - retention-days: 30 env: - NEXT_PUBLIC_URL: http://localhost:$PORT + NEXT_PUBLIC_URL: http://localhost:3000 NEXT_PUBLIC_API_URL: http://localhost:1337/cms NEXT_PUBLIC_MAPBOX_API_TOKEN: ${{ secrets.NEXT_PUBLIC_MAPBOX_API_TOKEN }} # Recommended: pass the GitHub token lets this action correctly # determine the unique run id necessary to re-run the checks GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/upload-artifact@v3 + if: always() + with: + name: playwright-report + path: playwright-report/ + retention-days: 30