Skip to content

fix(ios): bound AudioDeviceModuleObserver JS waits to break the deadlock #185

fix(ios): bound AudioDeviceModuleObserver JS waits to break the deadlock

fix(ios): bound AudioDeviceModuleObserver JS waits to break the deadlock #185

Workflow file for this run

name: Android CI
on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
jobs:
android-compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install node modules
run: npm install
- name: Install example node modules
run: npm install
working-directory: ./examples/GumTestApp/
- name: Compile Android Example
run: ./gradlew assembleDebug
working-directory: ./examples/GumTestApp/android