diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2f1cf93..92e8283d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: node-version: "24" cache: "pnpm" - run: pnpm install --frozen-lockfile - - run: pnpm check + - run: pnpm check:ci typecheck: name: Typecheck diff --git a/package.json b/package.json index 82b24c14..74efcad8 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "scripts": { "build": "node scripts/generate-discovery.ts && node scripts/build-diagrams.ts && node scripts/copy-vocs-theme.ts && node scripts/generate-cli-help.ts && vite build", "check": "biome check --write", + "check:ci": "biome check", "check:sdk-drift": "npx tsx .github/actions/sdk-drift-check/check-sdk-drift.ts", "check:types": "tsc --noEmit", "dev": "vite dev",