Skip to content

Commit

Permalink
Upgrade React Native Test App to use React Native 0.74.1 (#6695)
Browse files Browse the repository at this point in the history
* Upgrading React Native across packages, RNTA dependencies, hoisting RN TS config package

* Exposing configuring bridgeless via environment variables

* Disabling bridgeless on CI for now

* Ran pod install

* Installing the React Native eslint plugin in the root

* Fixed @realm/react tests
  • Loading branch information
kraenhansen authored Jun 4, 2024
1 parent da6d48f commit 22c294d
Show file tree
Hide file tree
Showing 8 changed files with 2,665 additions and 2,152 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pr-realm-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ jobs:
- name: Run ${{matrix.variant.target}} (${{ matrix.variant.os}} / ${{ matrix.variant.environment }})
if: ${{ matrix.variant.os == 'ios' }}
env:
USE_BRIDGELESS: 0 # Disabling bridgeless for now
MOCHA_REMOTE_CONTEXT: ${{ steps.mocha-env.outputs.context }}
timeout-minutes: 75
run: npm run ${{ matrix.variant.target}} --prefix integration-tests/environments/${{ matrix.variant.environment }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ workspace 'RealmTests.xcworkspace'

options = {
:hermes_enabled => ENV['USE_HERMES'] && ENV['USE_HERMES'] == '0' ? false : true,
:bridgeless_enabled => ENV['USE_BRIDGELESS'] && ENV['USE_BRIDGELESS'] == '0' ? false : true,
}

use_test_app! options
Loading

0 comments on commit 22c294d

Please sign in to comment.