You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
627 B

name: Test Android Unit
on:
workflow_call:
workflow_dispatch:
jobs:
test-android-unit:
name: Android - Unit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
- name: Install npm dependencies
working-directory: ./examples/Rn072
run: yarn install --frozen-lockfile
- name: Run unit tests
working-directory: ./examples/Rn072/android
run: ./gradlew testDebugUnitTest