Skip to content

Commit 54dee92

Browse files
v14: switch to test-renderer & async functions
1 parent ab823f6 commit 54dee92

File tree

316 files changed

+11823
-6524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

316 files changed

+11823
-6524
lines changed

.flowconfig

Lines changed: 0 additions & 63 deletions
This file was deleted.

.gemini/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"context": {
3+
"contextFileName": "AGENTS.md"
4+
}
5+
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ labels: 'bug report'
3434
<!--
3535
run following command in terminal of your root project and paste the result down
3636
37-
`npx envinfo --npmPackages react,react-native,react-test-renderer,@testing-library/react-native`
37+
`npx envinfo --npmPackages react,react-native,test-renderer,@testing-library/react-native`
3838
-->

.github/actions/setup-deps-rn-nightly/action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,5 @@ runs:
3131
yarn add -D \
3232
react-native@nightly \
3333
@react-native/babel-preset@nightly \
34-
35-
36-
@types/react@^19.2.7 \
34+
3735
shell: bash

.github/actions/setup-deps/action.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: Setup deps
22
description: Setup Node.js and install dependencies
33

4+
inputs:
5+
react-version:
6+
description: React version to install (e.g., ^19.2.0)
7+
required: false
8+
react-native-version:
9+
description: React Native version to install (e.g., 0.83.1)
10+
required: false
11+
412
runs:
513
using: composite
614
steps:
@@ -25,3 +33,9 @@ runs:
2533
if: steps.yarn-cache.outputs.cache-hit != 'true'
2634
run: yarn install --immutable
2735
shell: bash
36+
37+
- name: Switch to React and React Native versions
38+
if: inputs.react-version != '' && inputs.react-native-version != ''
39+
run: |
40+
yarn add -D react@${{ inputs.react-version }} @types/react@${{ inputs.react-version }} react-native@${{ inputs.react-native-version }} @react-native/babel-preset@${{ inputs.react-native-version }}
41+
shell: bash

0 commit comments

Comments
 (0)