Skip to content

fix(deps): update dependency next to v15.5.14 [security] - autoclosed #272

fix(deps): update dependency next to v15.5.14 [security] - autoclosed

fix(deps): update dependency next to v15.5.14 [security] - autoclosed #272

Workflow file for this run

name: e2e
on:
pull_request:
types:
- opened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Playwright E2E
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers and system dependencies
run: npx playwright install --with-deps
- name: Run e2e tests
run: npm run test:e2e
env:
CI: true
- name: Upload Playwright report
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report
retention-days: 7
if-no-files-found: ignore