Skip to content

build(deps-dev): bump the npm_and_yarn group across 1 directory with … #79

build(deps-dev): bump the npm_and_yarn group across 1 directory with …

build(deps-dev): bump the npm_and_yarn group across 1 directory with … #79

Workflow file for this run

name: Playwright E2E
on:
push:
branches:
- main
paths:
- 'src/**'
- 'package-lock.json'
workflow_dispatch:
jobs:
e2e:
runs-on: ubuntu-latest
env:
CI: 'true'
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Setup Node
uses: actions/setup-node@v6.4.0
with:
node-version: '24.16.0'
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium webkit
- name: Run Playwright tests
run: npm run test:e2e