Skip to content

Support React 19

Support React 19 #6

Workflow file for this run

name: PR
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- uses: pnpm/action-setup@v4
with:
version: 9.6.0
run_install: true
- name: Test with React 18
run: pnpm test
- name: Install React 19
run: cd packages/react-rough-fiber && pnpm add [email protected] [email protected] [email protected]
- name: Test with React 19
run: pnpm test