Skip to content

Bump ip from 1.1.8 to 1.1.9 in /test/VoiceProcessorTestApp (#37) #69

Bump ip from 1.1.8 to 1.1.9 in /test/VoiceProcessorTestApp (#37)

Bump ip from 1.1.8 to 1.1.9 in /test/VoiceProcessorTestApp (#37) #69

Workflow file for this run

name: React Native Voice Processor Tests
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '**'
- '!README.md'
- '!example/**'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- '**'
- '!README.md'
- '!example/**'
defaults:
run:
working-directory: test/VoiceProcessorTestApp
jobs:
test-android:
name: Run tests on Android
runs-on: pv-android
steps:
- uses: actions/checkout@v3
- name: Pre-build dependencies
run: yarn install
- name: Build tests
run: detox build --configuration android.att.release
- name: Run tests
run: detox test --configuration android.att.release
test-ios:
name: Run tests on iOS
runs-on: pv-ios
steps:
- uses: actions/checkout@v3
- name: Pre-build dependencies
run: yarn install
- name: Cocoapods install
working-directory: test/VoiceProcessorTestApp/ios
run: pod install
- name: Build tests
run: detox build --configuration ios.sim.release
- name: Run tests
run: detox test --configuration ios.sim.release