Feature/notifications #701
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |