chore: Simplify CSS transitions related code in C++ #3843
Workflow file for this run
This file contains hidden or 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 iOS build check | |
| env: | |
| YARN_ENABLE_HARDENED_MODE: 0 | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/example-ios-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/RNWorklets.podspec | |
| - packages/react-native-worklets/scripts/worklets_utils.rb | |
| - packages/react-native-worklets/apple/** | |
| - packages/react-native-worklets/Common/** | |
| - apps/fabric-example/** | |
| merge_group: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/example-ios-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/RNWorklets.podspec | |
| - packages/react-native-worklets/scripts/worklets_utils.rb | |
| - packages/react-native-worklets/apple/** | |
| - packages/react-native-worklets/Common/** | |
| - apps/fabric-example/** | |
| workflow_call: | |
| inputs: | |
| bundleMode: | |
| required: false | |
| type: boolean | |
| default: false | |
| workflow_dispatch: | |
| jobs: | |
| example-ios-build-check: | |
| if: github.repository == 'software-mansion/react-native-reanimated' | |
| runs-on: macos-26 | |
| env: | |
| WORKING_DIRECTORY: apps/fabric-example | |
| REANIMATED_DIR: packages/react-native-reanimated | |
| concurrency: | |
| group: ios-${{ github.ref }}-${{ inputs.bundleMode }} | |
| 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: Toggle Bundle Mode | |
| if: ${{ inputs.bundleMode }} | |
| run: ./scripts/toggle-bundle-mode.sh | |
| - name: Build Reanimated package | |
| working-directory: ${{ env.REANIMATED_DIR }} | |
| run: yarn build | |
| # TODO: Add caching for node_modules and artifacts that will work with monorepo setup. | |
| - name: Install Pods | |
| working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
| run: | | |
| bundle install | |
| bundle exec pod update | |
| - name: Build app | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: yarn react-native run-ios --no-packager --scheme "Debug FabricExample" |