chore: Add React 19 support #756
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Example tvOS build check | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/example-tvos-build-check.yml | |
- packages/react-native-reanimated/RNReanimated.podspec | |
- packages/react-native-reanimated/scripts/reanimated_utils.rb | |
- packages/react-native-reanimated/apple/** | |
- packages/react-native-reanimated/Common/** | |
- packages/react-native-worklets/** | |
merge_group: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/example-tvos-build-check.yml | |
- packages/react-native-reanimated/RNReanimated.podspec | |
- packages/react-native-reanimated/scripts/reanimated_utils.rb | |
- packages/react-native-reanimated/apple/** | |
- packages/react-native-reanimated/Common/** | |
- packages/react-native-worklets/** | |
workflow_call: | |
inputs: | |
use-external-worklets: | |
required: false | |
type: boolean | |
default: false | |
workflow_dispatch: | |
inputs: | |
use-external-worklets: | |
required: false | |
type: boolean | |
default: false | |
jobs: | |
build: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: macos-14 | |
env: | |
WORKING_DIRECTORY: apps/tvos-example | |
COMMON_APP_DIR: apps/common-app | |
REANIMATED_DIR: packages/react-native-reanimated | |
concurrency: | |
group: tvos-${{ github.ref }}-${{ inputs.use-external-worklets }} | |
cancel-in-progress: true | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions` | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Install monorepo node dependencies | |
run: yarn install --immutable | |
- name: Build Reanimated package | |
working-directory: ${{ env.REANIMATED_DIR }} | |
run: yarn build | |
- name: Use external worklets | |
if: ${{ inputs.use-external-worklets == 'true' }} | |
working-directory: ${{ env.COMMON_APP_DIR }} | |
run: yarn add react-native-worklets@workspace:"*" | |
- name: Install Pods | |
working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
run: | | |
bundle install | |
bundle exec pod install | |
- name: Build app | |
working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
run: xcodebuild -workspace TVOSExample.xcworkspace -configuration Debug -scheme TVOSExample -destination "generic/platform=tvOS Simulator" -quiet |