Skip to content

refactor: replace singleton with createAssemblyKit() and add workspaceId support #86

refactor: replace singleton with createAssemblyKit() and add workspaceId support

refactor: replace singleton with createAssemblyKit() and add workspaceId support #86

Workflow file for this run

name: CI
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v5
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24"
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check (lint + format + type check)
run: pnpm run check
- name: Run tests
run: pnpm test
- name: Build
run: pnpm run build