1 parent 31cbb02 commit f48a9bfCopy full SHA for f48a9bf
1 file changed
.github/workflows/ci.yaml
@@ -56,3 +56,24 @@ jobs:
56
57
- name: Run tests
58
run: bun run test:ci
59
+
60
+ test-canary-react:
61
+ name: Test React Canary
62
+ runs-on: ubuntu-latest
63
+ steps:
64
+ - uses: actions/checkout@v4
65
66
+ - name: Setup deps
67
+ uses: ./.github/actions/setup
68
69
+ - name: Install React canary
70
+ run: bun add -d react@next
71
72
+ - name: Install react-reconciler canary
73
+ run: bun add react-reconciler@next
74
75
+ - name: Build with canary dependencies
76
+ run: bun run build
77
78
+ - name: Run tests with canary dependencies
79
+ run: bun run test:ci
0 commit comments