diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index df1e07f..4be035b 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -64,7 +64,7 @@ jobs: if: failure() run: cat /tmp/server.log || true - run: npx playwright test --ignore-snapshots - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 if: failure() with: name: playwright-report @@ -132,7 +132,7 @@ jobs: if: failure() run: cat /tmp/server.log || true - run: npx playwright test e2e/visual/ - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 if: failure() with: name: visual-diffs diff --git a/playwright.config.js b/playwright.config.js index 40d9cb4..49d322d 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -27,7 +27,7 @@ export default defineConfig({ webServer: { command: `PORT=${PORT} npm run build && PORT=${PORT} NODE_ENV=development npm run preview`, url: BASE_URL, - reuseExistingServer: !process.env.CI, + reuseExistingServer: true, env: { NUXT_PUBLIC_COMING_SOON: "false", NODE_ENV: "development",