diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index 415c76a0..20838496 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -29,6 +29,14 @@ jobs: - name: Test production build run: npm run build + - name: Install Playwright + run: npx playwright install --with-deps + + - name: Run Playwright tests + run: npm run e2e + env: + BASE_URL: ${{ github.event.deployment_status.target_url }} + email-templates: runs-on: ubuntu-latest name: Update templates on Mailgun diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index b61e14cb..6a718d8b 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -26,11 +26,3 @@ jobs: - name: Test production build run: npm run build - - - name: Install Playwright - run: npx playwright install --with-deps - - - name: Run Playwright tests - run: npm run e2e - env: - BASE_URL: ${{ github.event.deployment_status.target_url }}