fix(deps): update dependency react-native to v0.78.2 #3229
This file contains hidden or 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] | |
| env: | |
| SKIP_PREFLIGHT_CHECK: true | |
| # https://github.com/uiwjs/react-native-uiw/issues/156 | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 2.7.5 | |
| bundler-cache: true | |
| - run: yarn install | |
| - run: npm run build | |
| - run: xcode-select -p | |
| - run: bundle install | |
| working-directory: example/examples | |
| - run: bundle exec pod install | |
| working-directory: example/examples/ios | |
| # - name: Build iOS (debug) | |
| # working-directory: example/examples | |
| # run: | | |
| # pwd | |
| # xcodebuild \ | |
| # -workspace $PWD/ios/examples.xcworkspace \ | |
| # -scheme examples \ | |
| # clean archive \ | |
| # -sdk iphoneos \ | |
| # -configuration Debug \ | |
| # -UseModernBuildSystem=NO \ | |
| # -archivePath $PWD/examples \ | |
| # CODE_SIGNING_ALLOWED=NO |