Check React Native nightly build #3
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: Check React Native nightly build | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/check-react-native-nightly.yml | |
schedule: | |
- cron: "37 19 * * *" | |
workflow_dispatch: | |
jobs: | |
build_ios: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: macos-14 | |
strategy: | |
matrix: | |
react-native-architecture: ["Paper", "Fabric"] | |
fail-fast: false | |
concurrency: | |
group: ios-react-native-nightly-${{ matrix.react-native-architecture }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Create app | |
run: npx react-native init app --skip-install --version nightly | |
- name: Download Reanimated from commit | |
working-directory: app | |
run: curl -LJO https://codeload.github.com/software-mansion/react-native-reanimated/tar.gz/${{ github.sha }} | |
- name: Install Reanimated | |
working-directory: app | |
run: yarn add react-native-reanimated@file:./react-native-reanimated-${{ github.sha }}.tar.gz | |
- name: Install Paper Pods | |
if: ${{ matrix.react-native-architecture == 'Paper' }} | |
working-directory: app/ios | |
run: pod install | |
- name: Install Fabric Pods | |
if: ${{ matrix.react-native-architecture == 'Fabric' }} | |
working-directory: app/ios | |
run: export RCT_NEW_ARCH_ENABLED=1 && pod install | |
- name: Build app | |
working-directory: app | |
run: yarn react-native run-ios --simulator='iPhone 14' | |
build_android: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
react-native-architecture: ["Paper", "Fabric"] | |
fail-fast: false | |
concurrency: | |
group: android-react-native-nightly-${{ matrix.react-native-architecture }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Set up JDK 18 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "18" | |
- name: Create app | |
run: npx react-native init app --skip-install --version nightly | |
- name: Download Reanimated from commit | |
working-directory: app | |
run: curl -LJO https://codeload.github.com/software-mansion/react-native-reanimated/tar.gz/${{ github.sha }} | |
- name: Install Reanimated | |
working-directory: app | |
run: yarn add react-native-reanimated@file:./react-native-reanimated-${{ github.sha }}.tar.gz | |
- name: Setup Fabric | |
if: ${{ matrix.react-native-architecture == 'Fabric' }} | |
working-directory: app/android | |
run: sed -i 's/newArchEnabled=false/newArchEnabled=true/' gradle.properties | |
- name: Build app | |
working-directory: app/android | |
run: ./gradlew assembleDebug --console=plain |