Skip to content

chore(deps): bump the npm_and_yarn group across 1 directory with 16 updates #4879

chore(deps): bump the npm_and_yarn group across 1 directory with 16 updates

chore(deps): bump the npm_and_yarn group across 1 directory with 16 updates #4879

Workflow file for this run

name: Lint, Unit Tests, and Code Analysis
on:
pull_request:
branches:
- develop
- main
- 'v[0-9]+.[0-9]+.[0-9]+*beta*'
types: [opened, synchronize]
jobs:
check_pr:
runs-on: public
strategy:
matrix:
node-version: [24.x]
steps:
- uses: actions/checkout@v6
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install && Build - SDK and Sample App
uses: ./.github/actions/install-and-build-sdk
- name: Lint
run: yarn lint
- name: Typecheck tests
run: yarn workspace stream-chat-react-native-core test:typecheck
- name: Test
run: yarn test:coverage