Bump react-native-windows from 0.72.10 to 0.74.8 #245
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: iOS | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 15.x | |
- run: npm ci | |
- run: xcode-select -p | |
- run: pod install | |
working-directory: ios | |
name: Install pod dependencies | |
- name: Build iOS (debug) | |
run: "xcodebuild \ | |
-workspace ios/HelloReactNative.xcworkspace \ | |
-scheme HelloReactNative \ | |
clean archive \ | |
-sdk iphoneos \ | |
-configuration Debug \ | |
-UseModernBuildSystem=NO \ | |
-archivePath $PWD/HelloReactNative \ | |
CODE_SIGNING_ALLOWED=NO" |