Skip to content

chore(deps): bump ip from 1.1.8 to 1.1.9 in example apps #1264

chore(deps): bump ip from 1.1.8 to 1.1.9 in example apps

chore(deps): bump ip from 1.1.8 to 1.1.9 in example apps #1264

name: Test iOS build on Fabric
on:
pull_request:
branches:
- main
paths:
- '.github/workflows/ios-build-test-fabric.yml'
- 'RNScreens.podspec'
- 'package.json'
- 'ios/**'
- 'common/**'
- 'src/fabric/**'
- 'FabricTestExample/**'
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: macos-12
timeout-minutes: 60
env:
WORKING_DIRECTORY: FabricTestExample
concurrency:
group: ios-fabric-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
cache: 'yarn'
cache-dependency-path: 'FabricTestExample/yarn.lock'
- name: Install node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn
# This step is required due to the bug introduced in 1.15.0 version of cocoapods
# that breaks the pod installation for cached packages.
# see https://github.com/facebook/react-native/issues/42698
# This step should be removed once this issue will be resolved:
# https://github.com/actions/runner-images/issues/9308
- name: Install Ruby gems
run: gem install cocoapods -v 1.15.2
- name: Install pods
id: install_pods
continue-on-error: true
working-directory: ${{ env.WORKING_DIRECTORY }}/ios
run: RCT_NEW_ARCH_ENABLED=1 pod install
- if: steps.install_pods.outcome == 'failure'
id: remove_pods
name: Remove pods
working-directory: ${{ env.WORKING_DIRECTORY }}/ios
run: rm -fr build Pods Podfile.lock
- if: steps.remove_pods.outcome == 'success'
id: reinstall_pods
name: Reinstall pods
working-directory: ${{ env.WORKING_DIRECTORY }}/ios
run: RCT_NEW_ARCH_ENABLED=1 pod install
- name: Build app
working-directory: ${{ env.WORKING_DIRECTORY }}
run: npx react-native run-ios --no-packager --simulator="iPhone 15"