Skip to content

Bump eslint-config-next from 14.2.5 to 14.2.15 in /client #70

Bump eslint-config-next from 14.2.5 to 14.2.15 in /client

Bump eslint-config-next from 14.2.5 to 14.2.15 in /client #70

Workflow file for this run

name: e2e Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
playwright:
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./e2e
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pipenv'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --system
- name: Ensure browsers are installed
run: playwright install --with-deps
- name: Start docker containers
run: docker compose -f ../docker-compose.e2e.yml up -d
- name: Run e2e tests
run: pytest --tracing=retain-on-failure
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-traces
path: test-results/