Skip to content

Update react monorepo to v19 #1503

Update react monorepo to v19

Update react monorepo to v19 #1503

Workflow file for this run

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "22.19.0"
cache: "yarn"
- run: "yarn install"
- run: "yarn analyze"
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "22.19.0"
cache: "yarn"
- run: "yarn install"
- run: "yarn test"
test_acceptance:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "22.19.0"
cache: "yarn"
- run: "yarn install"
- uses: cypress-io/github-action@v2
with:
command: "yarn ci:test:acc"