Skip to content

Bump @playwright/test from 1.32.2 to 1.38.1 in /web #860

Bump @playwright/test from 1.32.2 to 1.38.1 in /web

Bump @playwright/test from 1.32.2 to 1.38.1 in /web #860

Workflow file for this run

name: Test
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run lint
unit-test:
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run test:unit
e2e-test:
runs-on: ubuntu-latest
timeout-minutes: 30
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npx playwright install
- run: npm test