Skip to content

Bump the development-dependencies group across 1 directory with 4 upd… #52

Bump the development-dependencies group across 1 directory with 4 upd…

Bump the development-dependencies group across 1 directory with 4 upd… #52

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install test dependencies
run: npm ci
- name: Install front-end dependencies
run: npm ci
working-directory: ./mock-app
- name: Install Playwright Browsers
run: npm run install-browsers
- name: Run Playwright tests
run: npm run test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30