chore: Upgrade TVOSExample to RN 0.81 #3784
Workflow file for this run
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: Test tvOS build | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/tv-os-build-test.yml' | |
| - 'RNScreens.podspec' | |
| - 'package.json' | |
| - 'ios/**' | |
| - 'common/**' | |
| - 'TVOSExample/**' | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: macos-14 | |
| timeout-minutes: 60 | |
| env: | |
| WORKING_DIRECTORY: TVOSExample | |
| RNS_GAMMA_ENABLED: 0 | |
| concurrency: | |
| group: ios-tv-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js (version from .nvmrc) | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'yarn' | |
| cache-dependency-path: ${{ env.WORKING_DIRECTORY }}/yarn.lock | |
| - name: Install node dependencies | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: yarn | |
| - name: Install pods | |
| working-directory: ${{ env.WORKING_DIRECTORY }}/ios | |
| run: pod install | |
| - name: Build app | |
| working-directory: ${{ env.WORKING_DIRECTORY }} | |
| run: npx react-native run-ios --simulator="Apple TV" |