refactor(tabs): replace isNativeAction with actionOrigin enum #4819
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 Android build on Fabric | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - main-labs | |
| paths: | |
| - 'android/**' | |
| - 'common/**' | |
| - 'src/fabric/**' | |
| - 'FabricExample/**' | |
| - 'package.json' | |
| - '.github/workflows/android-build-test-fabric.yml' | |
| push: | |
| branches: | |
| - main | |
| - main-labs | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| env: | |
| WORKING_DIRECTORY: FabricExample | |
| RNS_GAMMA_ENABLED: 1 | |
| concurrency: | |
| group: android-fabric-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'zulu' | |
| cache: 'gradle' | |
| - 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: Build app | |
| working-directory: ${{ env.WORKING_DIRECTORY }}/android | |
| run: ./gradlew assembleDebug --console=plain -PreactNativeArchitectures=arm64-v8a |