Skip to content

Bump playwright from 1.47.2 to 1.56.1 in the npm_and_yarn group across 1 directory #353

Bump playwright from 1.47.2 to 1.56.1 in the npm_and_yarn group across 1 directory

Bump playwright from 1.47.2 to 1.56.1 in the npm_and_yarn group across 1 directory #353

Workflow file for this run

name: Unit tests
on:
push:
branches: [main, master, next]
pull_request:
jobs:
run-tests:
name: Run unit tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out repo
uses: actions/checkout@v5
- name: Set up node
uses: actions/setup-node@v5
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Bundle library
run: npm run build
- name: Run tests
run: npm run test:unit