feat: bump RN to 0.74 in FabricExample and remove rea hacks (#2262) #454
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: Test iOS build | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/ios-build-test.yml | |
- RNSVG.podspec | |
- apple/** | |
- Example/package.json | |
- Example/ios/** | |
- src/fabric/** | |
- FabricExample/package.json | |
- FabricExample/ios/** | |
- package.json | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-14 | |
strategy: | |
matrix: | |
working-directory: [Example, FabricExample] | |
fail-fast: false | |
concurrency: | |
group: ios-${{ matrix.working-directory }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Use latest stable Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Restore react-native-svg node_modules from cache | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-modules-svg-${{ hashFiles('yarn.lock') }} | |
restore-keys: ${{ runner.os }}-node-modules-svg- | |
- name: Install react-native-svg node_modules | |
run: yarn install --frozen-lockfile | |
- name: Restore app node_modules from cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ matrix.working-directory }}/node_modules | |
key: ${{ runner.os }}-node-modules-${{ matrix.working-directory }}-${{ hashFiles(format('{0}/yarn.lock', matrix.working-directory)) }} | |
restore-keys: ${{ runner.os }}-node-modules-${{ matrix.working-directory }}- | |
- name: Install app node_modules | |
working-directory: ${{ matrix.working-directory }} | |
run: yarn install --frozen-lockfile | |
- name: Restore Pods from cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ matrix.working-directory }}/ios/Pods | |
~/Library/Caches/CocoaPods | |
~/.cocoapods | |
key: ${{ runner.os }}-pods-${{ matrix.working-directory }}-${{ hashFiles(format('{0}/ios/Podfile.lock', matrix.working-directory)) }} | |
- name: Install Pods | |
working-directory: ${{ matrix.working-directory }}/ios | |
run: pod install | |
- name: Restore build artifacts from cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/Library/Developer/Xcode/DerivedData | |
key: ${{ runner.os }}-ios-derived-data-${{ matrix.working-directory }}-${{ hashFiles(format('{0}/ios/Podfile.lock', matrix.working-directory)) }} | |
- name: Build app | |
working-directory: ${{ matrix.working-directory }} | |
run: npx react-native@latest run-ios --simulator="iPhone 14 Pro" --mode Debug --verbose --terminal /bin/zsh |