This repository was archived by the owner on Feb 10, 2026. It is now read-only.
FCE-2395: Implement screen sharing for live streams #1628
Workflow file for this run
This file contains hidden or 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 - Unit tests | |
| on: | |
| pull_request: | |
| jobs: | |
| rn-client-unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| cache: "npm" | |
| - name: Use corepack | |
| run: corepack enable | |
| - name: Install node dependencies | |
| run: yarn | |
| - name: Run unit tests for the library | |
| run: yarn test -- src/__tests__/*.test.tsx | |
| working-directory: ./packages/react-native-client |