chore: Make GitHub actions names match their titles, cleanup #7
Workflow file for this run
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: Example Android build check | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/android-build.yml | |
- packages/react-native-reanimated/android/** | |
- packages/react-native-reanimated/Common/** | |
- apps/paper-example/package.json | |
- apps/paper-example/android/** | |
- apps/fabric-example/package.json | |
- apps/fabric-example/android/** | |
merge_group: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/android-build.yml | |
- packages/react-native-reanimated/android/** | |
- packages/react-native-reanimated/Common/** | |
- apps/paper-example/package.json | |
- apps/paper-example/android/** | |
- apps/fabric-example/package.json | |
- apps/fabric-example/android/** | |
jobs: | |
build: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
working-directory: [apps/paper-example, apps/fabric-example] | |
fail-fast: false | |
concurrency: | |
group: android-${{ matrix.working-directory }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
# TODO: Install deps only when cache failed (use id and outputs) | |
# TODO: Check if this optimization works with new yarn | |
# TODO: Check if we should cache `yarn's` cache instead | |
- name: Restore node_modules from cache | |
uses: actions/cache@v3 | |
with: | |
path: . | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock') }} | |
restore-keys: ${{ runner.os }}-node-modules- | |
- name: Restore app node_modules from cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ matrix.working-directory }}/node_modules | |
key: ${{ runner.os }}-node-modules-${{ matrix.working-directory }}-${{ hashFiles(format('{0}/yarn.lock', matrix.working-directory)) }} | |
restore-keys: ${{ runner.os }}-node-modules-${{ matrix.working-directory }}- | |
- name: Install monorepo node dependencies | |
run: yarn install --immutable | |
- name: Build app | |
working-directory: ${{ matrix.working-directory }}/android | |
run: ./gradlew assembleDebug --build-cache -PreactNativeArchitectures=arm64-v8a |