Bump @babel/traverse from 7.22.10 to 7.23.2 in /example #24
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: React Native Voice Processor Example | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/example.yml' | |
- 'example/**' | |
- '!example/README.md' | |
pull_request: | |
branches: [ main, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- '.github/workflows/example.yml' | |
- 'example/**' | |
- '!example/README.md' | |
jobs: | |
build-android: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Pre-build dependencies | |
run: npm install yarn | |
- name: Install dependencies | |
run: yarn bootstrap | |
- name: Build bundle | |
run: yarn example android-bundle | |
- name: Build | |
run: ./gradlew assembleDebug | |
working-directory: example/android | |
build-ios: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Pre-build dependencies | |
run: npm install yarn | |
- name: Install dependencies | |
run: yarn bootstrap | |
- name: Build bundle | |
run: yarn example ios-bundle | |
- name: Build | |
run: xcrun xcodebuild build | |
-configuration Debug | |
-workspace VoiceProcessorExample.xcworkspace | |
-sdk iphoneos | |
-scheme VoiceProcessorExample | |
-derivedDataPath ddp | |
CODE_SIGNING_ALLOWED=NO | |
working-directory: example/ios |