Skip to content

fix(client): thread deletion fixes and load all available threads #246

fix(client): thread deletion fixes and load all available threads

fix(client): thread deletion fixes and load all available threads #246

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential python3
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check (lint + typecheck + build)
run: pnpm check
- name: Test
run: pnpm test