iOS Workflow #10
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 Tests | |
on: | |
pull_request: | |
paths: | |
- 'ios/**' | |
jobs: | |
build: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Select Xcode 15.1 | |
run: ls /Applications/ && sudo xcode-select -switch /Applications/Xcode_15.1.app # Switch Xcode version | |
- uses: actions/setup-node@v3 | |
- run: yarn | |
- name: Build iOS App | |
run: yarn ios --no-packager --mode Release |