Skip to content

chore(deps): update react monorepo to v19 (#375) #1514

chore(deps): update react monorepo to v19 (#375)

chore(deps): update react monorepo to v19 (#375) #1514

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
Test:
name: Run test codes
if: |
github.event.pull_request.draft == false
&& !startsWith(github.head_ref, 'release')
&& !startsWith(github.head_ref, 'doc')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install and cache nodejs
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: Install packages
run: yarn install
- name: Format check
run: yarn fmt:check
- name: Lint check
run: yarn lint
- name: Test and Show coverage
run: yarn test -- --bail --maxWorkers=100% --watchAll=false --coverage