1
0

playwright.yml 708 B

123456789101112131415161718192021222324252627282930
  1. name: Playwright E2E
  2. # Manual-only by design:
  3. # - Automatic e2e runs that gate Docker image builds live in docker-publish.yml.
  4. # - Keeping this workflow manual avoids running the same e2e suite twice on master pushes.
  5. on:
  6. workflow_dispatch:
  7. jobs:
  8. e2e:
  9. runs-on: ubuntu-latest
  10. timeout-minutes: 45
  11. steps:
  12. - name: Checkout
  13. uses: actions/checkout@v7
  14. - name: Setup Node
  15. uses: actions/setup-node@v6
  16. with:
  17. node-version: 20
  18. - name: Install dependencies
  19. run: npm install
  20. - name: Install Playwright Chromium
  21. run: npx playwright install --with-deps chromium
  22. - name: Run Playwright tests
  23. run: npm run test:e2e