Merge pull request #333 from JeneaVranceanu/fix/docs-typo #284
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: | |
branches: | |
- master | |
- fix-ci | |
pull_request: | |
paths: | |
- ".github/workflows/ios.yml" | |
- "src/**" | |
- "ios/**" | |
- "MMKV/**" | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- run: yarn | |
working-directory: example | |
- run: xcode-select -p | |
- run: pod install | |
working-directory: example/ios | |
name: Install pod dependencies | |
- name: Build iOS (debug) | |
working-directory: example/ios | |
run: "xcodebuild \ | |
-workspace example.xcworkspace \ | |
-scheme example \ | |
clean archive \ | |
-sdk iphonesimulator \ | |
-configuration Debug \ | |
-UseModernBuildSystem=YES \ | |
CODE_SIGNING_ALLOWED=NO" |