Skip to content

chore: add folder structure +docs files #9

chore: add folder structure +docs files

chore: add folder structure +docs files #9

Workflow file for this run

name: Run Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium
- name: Run Playwright tests with environment variables
run: npx playwright test
env:
ENV: prod
BASE_URL: ${{ vars.BASE_URL }}
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: test-report
path: e2e/output/test-report/
retention-days: 7