Skip to content

feat: use react 19 #1056

feat: use react 19

feat: use react 19 #1056

Workflow file for this run

name: main
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Enable Corepack
run: corepack enable
- name: Run linting and tests
run: |
pnpm install --frozen-lockfile
pnpm lint
pnpm test
env:
CI: true