Skip to content

Initiated by ryosuke-wakaba for commit 23000a71aaa20e00a8506b523babf9d26c254390 #34

Initiated by ryosuke-wakaba for commit 23000a71aaa20e00a8506b523babf9d26c254390

Initiated by ryosuke-wakaba for commit 23000a71aaa20e00a8506b523babf9d26c254390 #34

Workflow file for this run

name: test
run-name: Initiated by ${{ github.actor }} for commit ${{ github.sha }}
on:
pull_request:
types:
- synchronize
- reopened
- opened
jobs:
test-job:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18.16.0]
steps:
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: test
run: ./gradlew test
# - name: Run connected tests
# uses: ReactiveCircus/android-emulator-runner@v2
# with:
# api-level: 33
# target: google_apis
# arch: x86_64
# script: ./gradlew connectedAndroidTest