FCE-423, FCE-298: Propose updated way of configuring video quality in SDKs; Re-think default activeEncodings settings in SDK; FCE-1032: Fix stopCapture #77
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 - Expo Doctor | |
on: | |
pull_request: | |
jobs: | |
expo_doctor: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🏗 Setup repo | |
uses: actions/checkout@v4 | |
- name: 🏗 Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: npm | |
- name: Use corepack | |
run: corepack enable | |
- name: 📦 Install dependencies | |
run: yarn && yarn build | |
- name: 🩺 Run Expo Doctor | |
run: EXPO_DOCTOR_SKIP_DEPENDENCY_VERSION_CHECK=1 npx expo-doctor@latest | |
working-directory: examples/fishjam-chat |