fix(CI): add missing AVD dependency to Paper Android e2e workflow (#2… #2480
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 | |
| concurrency: | |
| group: ios-tv-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 18 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| 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" |