Skip to content

Bump the minor-and-patch group across 1 directory with 12 updates #1155

Bump the minor-and-patch group across 1 directory with 12 updates

Bump the minor-and-patch group across 1 directory with 12 updates #1155

Workflow file for this run

name: Build the app and run Playwright Tests
on: [push, pull_request]
jobs:
build:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install -g yarn && yarn
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Build app
run: yarn build
- name: Run Playwright tests
run: yarn test