docs: update deprecated expo install instructions to `npx expo instal… #1193
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: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/ios-build-test.yml' | |
- 'RNScreens.podspec' | |
- 'package.json' | |
- 'ios/**' | |
- 'common/**' | |
- 'TestsExample/**' | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-12 | |
timeout-minutes: 60 | |
env: | |
WORKING_DIRECTORY: TestsExample | |
concurrency: | |
group: ios-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
cache-dependency-path: 'TestsExample/yarn.lock' | |
- name: Install node dependencies | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: yarn | |
- name: Install pods | |
id: install_pods | |
continue-on-error: true | |
working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
run: pod install | |
- if: steps.install_pods.outcome == 'failure' | |
id: remove_pods | |
name: Remove pods | |
working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
run: rm -fr build Pods Podfile.lock | |
- if: steps.remove_pods.outcome == 'success' | |
id: reinstall_pods | |
name: Reinstall pods | |
working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
run: pod install | |
- name: Build app | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
run: yarn ios |