Skip to content

refact: unified prettier config across repository #1810

refact: unified prettier config across repository

refact: unified prettier config across repository #1810

name: Test Android build
on:
pull_request:
branches:
- main
paths:
- 'android/**'
- 'package.json'
- 'Example/**'
- '.github/workflows/android-build-test.yml'
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
env:
WORKING_DIRECTORY: Example
concurrency:
group: android-${{ 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: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
cache-dependency-path: |
yarn.lock
${{ env.WORKING_DIRECTORY }}/yarn.lock
- name: Install dependencies
run: yarn
- name: Install Example app dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn
- name: Build app
working-directory: ${{ env.WORKING_DIRECTORY }}/android
run: ./gradlew assembleDebug --console=plain