Skip to content

Qa/initialize automation #10

Qa/initialize automation

Qa/initialize automation #10

Workflow file for this run

name: Playwright Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
- pr
jobs:
tests_e2e: # Job name for end-to-end tests
name: Run end-to-end tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependencies
run: npm ci # Using npm ci for clean installs
- name: Install Playwright browsers
run: npx playwright install --with-deps # Install Playwright browsers
- name: Run tests
run: npx playwright test # Execute Playwright tests