chore: fixed and upgraded project setup and ci #89
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: Build Android App | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/build-android.yml" | |
| - "android/**" | |
| - "example/android/**" | |
| - "yarn.lock" | |
| - "example/yarn.lock" | |
| jobs: | |
| build: | |
| name: Build Android Example App | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: example/android | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Enable corepack and set yarn to latest stable | |
| shell: bash | |
| run: | | |
| corepack enable | |
| yarn set version stable | |
| - name: Setup JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: "temurin" | |
| cache: "gradle" | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Run Gradle Build | |
| run: ./gradlew assembleDebug |