Skip to content

chore: remove Playwright testing infrastructure #5

chore: remove Playwright testing infrastructure

chore: remove Playwright testing infrastructure #5

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, update-tests]
pull_request:
branches: [main, update-tests]
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install --with-deps
- name: Start the app
run: |
npm run start &
npx wait-on http://localhost:3000
- name: Run tests with Allure reporter
run: npm run test:allure
env:
BASE_URL: http://localhost:3000
- name: Generate Allure report
run: npm run allure:generate