We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 223e0c4 commit ec3fbe9Copy full SHA for ec3fbe9
1 file changed
.github/workflows/ci.yml
@@ -52,6 +52,25 @@ jobs:
52
- name: Typecheck
53
run: yarn typecheck
54
55
+ typecheck-react-19:
56
+ needs: [install-cache-deps]
57
+ runs-on: ubuntu-latest
58
+ name: Typecheck
59
+ steps:
60
+ - name: Checkout
61
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
62
+
63
+ - name: Setup Node.js and deps
64
+ uses: ./.github/actions/setup-deps
65
66
+ - name: Switch to React 18
67
+ run: |
68
+ yarn remove react react-test-renderer react-native @react-native/babel-preset
69
+ yarn add -D react@18.3.1 react-test-renderer@18.3.1 react-native@0.77.0 @react-native/babel-preset@0.77.0
70
71
+ - name: Typecheck
72
+ run: yarn typecheck
73
74
test:
75
needs: [install-cache-deps]
76
runs-on: ubuntu-latest
0 commit comments