chore: remove fabric example and migrate to 72 #103
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: Android Build | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/android.yml' | |
- 'android/**' | |
- 'example/android/**' | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.ref }}-android | |
cancel-in-progress: true | |
jobs: | |
android-build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-dependencies | |
- name: Pull dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ./node_modules | |
key: ${{ hashFiles('./package.json') }} | |
- name: Cache example node modules | |
id: cache-example-npm | |
uses: actions/cache@v3 | |
env: | |
cache-name: cached-example-npm-deps | |
with: | |
path: example/node_modules | |
key: ${{ hashFiles('./example/yarn.lock') }}-${{ hashFiles('./yarn.lock') }} | |
- name: Install required example dependencies on yarn.lock change | |
if: steps.cache-example-npm.outputs.cache-hit != 'true' | |
run: yarn bootstrap-no-pods --frozen-lockfile | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: Gradle cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }} | |
- name: Install Maestro CLI | |
run: export MAESTRO_VERSION=1.21.3; curl -Ls "https://get.maestro.mobile.dev" | bash | |
- name: Add Maestro to path | |
run: echo "${HOME}/.maestro/bin" >> $GITHUB_PATH | |
- name: Run Android Emulator and app | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 29 | |
arch: x86_64 | |
target: google_apis | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: true | |
script: | | |
yarn run-example-android | |
yarn test:e2e:android |