ios: update webrtc-sdk pod to 125.6422.05 #58
Workflow file for this run
This file contains 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 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@v3 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
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 |