Skip to content

Commit 9e00eb7

Browse files
committed
chore: react@next CI checks
1 parent 91453e7 commit 9e00eb7

2 files changed

Lines changed: 24 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
strategy:
4343
matrix:
44-
react-version: ["^19.0.0", "^19.1.0", "^19.2.0", "latest", "next"]
44+
react-version: ["^19.0.0", "^19.1.0", "^19.2.0", "latest"]
4545
steps:
4646
- uses: actions/checkout@v4
4747

.github/workflows/nightly.yaml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ on:
66
workflow_dispatch:
77

88
jobs:
9+
910
test-react-versions:
1011
name: Test React ${{ matrix.react-version }}
1112
runs-on: ubuntu-latest
1213
strategy:
1314
matrix:
14-
react-version: ["^19.0.0", "^19.1.0", "^19.2.0", "latest", "next"]
15+
react-version: ["^19.0.0", "^19.1.0", "^19.2.0", "latest"]
1516
steps:
1617
- uses: actions/checkout@v4
1718

@@ -26,3 +27,24 @@ jobs:
2627

2728
- name: Run tests
2829
run: bun run test:ci
30+
31+
test-canary-react:
32+
name: Test React Canary
33+
runs-on: ubuntu-latest
34+
steps:
35+
- uses: actions/checkout@v4
36+
37+
- name: Setup deps
38+
uses: ./.github/actions/setup
39+
40+
- name: Install React canary
41+
run: bun add -d react@next
42+
43+
- name: Install react-reconciler canary
44+
run: bun add react-reconciler@next
45+
46+
- name: Build with canary dependencies
47+
run: bun run build
48+
49+
- name: Run tests with canary dependencies
50+
run: bun run test:ci

0 commit comments

Comments
 (0)