Skip to content

Feature/notifications #701

Feature/notifications

Feature/notifications #701

Workflow file for this run

name: Frontend e2e
on:
push:
pull_request:
jobs:
e2e-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'
- name: Install dependencies for frontend
working-directory: frontend
run: npm install @playwright/test --save-dev
- name: Install Playwright
working-directory: frontend
run: npx playwright install
- name: Run Playwright tests
working-directory: frontend
env:
TEST_USERNAME: ${{ vars.TEST_USERNAME }}
TEST_PASSWORD: ${{ vars.TEST_PASSWORD }}
run: npm run test:e2e