Skip to content

Update dependency react-doctor to ^0.0.37 #9799

Update dependency react-doctor to ^0.0.37

Update dependency react-doctor to ^0.0.37 #9799

Workflow file for this run

name: Cypress Tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-24.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
browser: [chrome, firefox, edge]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install pnpm
uses: pnpm/action-setup@2e223e0f0d2b8fd9872cbadb8b7428e5f8b5556d
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: "pnpm"
cache-dependency-path: pnpm-lock.yaml
- name: Cache Cypress binary
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
with:
path: ~/.cache/Cypress
key: ${{ runner.os }}-cypress-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-cypress-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Verify and install Cypress binary
run: npx cypress verify || npx cypress install
- name: Cypress run
uses: cypress-io/github-action@f790eee7a50d9505912f50c2095510be7de06aa7 # v6
with:
install: false
build: pnpm build
start: pnpm dev
wait-on: "http://localhost:3000"
wait-on-timeout: 120
browser: ${{ matrix.browser }}