Skip to content

Workshop rework and update #6

Workshop rework and update

Workshop rework and update #6

Workflow file for this run

name: End-to-End Tests
on:
push:
branches: [ main, update-workshop ]
pull_request:
branches: [ main ]
jobs:
e2e-tests:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: client/package-lock.json
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
working-directory: ./client
run: npm ci
- name: Set up Python environment and dependencies
run: ./scripts/setup-environment.sh
- name: Install Playwright Browsers
working-directory: ./client
run: npx playwright install --with-deps
- name: Run Playwright tests
run: ./scripts/run-e2e-tests.sh
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: client/playwright-report/
retention-days: 30