feat: Add Reanimated compatibility GitHub action #3
Workflow file for this run
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: React Native compatibility check [Nightly] | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/reanimated-compatibility-check-nightly.yml | |
schedule: | |
- cron: '37 19 * * *' | |
workflow_dispatch: | |
jobs: | |
build_ios: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: ${{matrix.platform == 'iOS' && 'macos-14' || 'ubuntu-latest'}} | |
strategy: | |
matrix: | |
platform: ['iOS', 'Android'] | |
# TODO: Fetch compatibility in docs and here from common sources. | |
# Update it when dropping support for RN versions. | |
react-native: | |
[ | |
{ version: '0.72', architecture: 'Paper' }, | |
{ version: '0.73', architecture: 'Paper' }, | |
{ version: '0.74', architecture: 'Paper' }, | |
{ version: '0.75', architecture: 'Paper' }, | |
{ version: '0.75', architecture: 'Fabric' }, | |
] | |
fail-fast: false | |
env: | |
APP_NAME: app | |
RCT_NEW_ARCH_ENABLED: ${{ matrix.react-native.architecture == 'Fabric' && '1' || '0' }} | |
concurrency: | |
group: react-native-nightly-reanimated-build-check-${{ matrix.react-native.version}}-${{matrix.platform}}-${{matrix.react-native.architecture}}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Set up JDK 18 | |
if: ${{ matrix.platform == 'Android' }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '18' | |
- name: Create app | |
run: | | |
npx react-native init ${{env.APP_NAME}} --version ${{ matrix.react-native.version }} --skip-install --pm yarn --skip-install --install-pods false --skip-git-init | |
- name: Install Reanimated | |
working-directory: ${{ env.APP_NAME }} | |
run: yarn add react-native-reanimated@https://github.com/software-mansion/react-native-reanimated.git#commit=${{ github.sha }} | |
- name: Install Pods | |
if: ${{ matrix.platform == 'iOS' }} | |
working-directory: ${{ env.APP_NAME }}/ios | |
run: bundle install && bundle exec pod install | |
- name: Setup Fabric (Android) | |
if: ${{ matrix.platform == 'Android' && matrix.react-native.architecture == 'Fabric' }} | |
working-directory: ${{ env.APP_NAME }}/android | |
run: sed -i 's/newArchEnabled=false/newArchEnabled=true/' gradle.properties | |
- name: Build app (iOS) | |
if: ${{ matrix.platform == 'iOS' }} | |
working-directory: ${{ env.APP_NAME }} | |
run: yarn react-native run-ios --simulator='iPhone 14' | |
- name: Build app (Android) | |
if: ${{ matrix.platform == 'Android' }} | |
working-directory: ${{ env.APP_NAME }}/android | |
run: ./gradlew assembleDebug --console=plain |