Skip to content

feat(ios): configure the default audio session natively in the observer #127

feat(ios): configure the default audio session natively in the observer

feat(ios): configure the default audio session natively in the observer #127

Workflow file for this run

name: Simple CI
on: [pull_request]
jobs:
run-ci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm install
- name: Check if the git repository is clean
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
- run: npm run lint
clang:
name: Clang-Format Check
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
path:
- 'ios'
- 'android'
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: jidicula/clang-format-action@654a770daa28443dd111d133e4083e21c1075674 # v4.18.0
with:
clang-format-version: '17'
check-path: ${{ matrix.path }}
include-regex: '^.*(\.h|\.m|\.java)'