docs: add statement about the upstream repo #286
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: Android | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/[email protected] | |
| with: | |
| node-version: 16 | |
| - name: Set up JDK | |
| uses: actions/[email protected] | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| - name: Cache /node_modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | |
| - name: Install npm dependencies | |
| run: yarn --frozen-lockfile | |
| shell: bash | |
| - name: Build Android test app | |
| uses: gradle/[email protected] | |
| with: | |
| gradle-version: wrapper | |
| arguments: --no-daemon clean build check test | |
| build-root-directory: example/android | |
| timeout-minutes: 60 |