This repository was archived by the owner on Jul 11, 2025. It is now read-only.
feat: Notifications + SDK v4 + Conversations fetching fixes + Conversation composer send clean up #240
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: Validate Code Quality | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "**/*.ts" | |
| - "**/*.tsx" | |
| - "package.json" | |
| jobs: | |
| tsc: | |
| runs-on: warp-ubuntu-latest-x64-8x | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: "yarn" | |
| env: | |
| SKIP_YARN_COREPACK_CHECK: "1" | |
| - run: corepack enable | |
| - run: yarn | |
| - run: yarn typecheck | |
| lint: | |
| runs-on: warp-ubuntu-latest-x64-8x | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: "yarn" | |
| env: | |
| SKIP_YARN_COREPACK_CHECK: "1" | |
| - run: corepack enable | |
| - run: yarn | |
| - run: yarn lint | |
| test: | |
| runs-on: warp-ubuntu-latest-x64-8x | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: "yarn" | |
| env: | |
| SKIP_YARN_COREPACK_CHECK: "1" | |
| - run: corepack enable | |
| - run: yarn | |
| - run: yarn test |