Skip to content

Update dependency @testing-library/react to ^15.0.5 #680

Update dependency @testing-library/react to ^15.0.5

Update dependency @testing-library/react to ^15.0.5 #680

Workflow file for this run

name: test-vrt
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: macos-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: latest
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
- name: Test build
run: pnpm build
- name: Visual Regression Test
run: pnpm test:vrt
- uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: examples/storybook/playwright-report/
retention-days: 1