From f3593402c68ee6b8f988f9aa140ff5744324236e Mon Sep 17 00:00:00 2001 From: Kevin Siegler <17910833+topocount@users.noreply.github.com> Date: Thu, 19 Sep 2024 16:30:30 -0500 Subject: [PATCH] fix(sdk): enable linting in CI --- packages/sdk/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 86ea7f8c3..76147012d 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -173,7 +173,8 @@ } }, "scripts": { - "build": "vite build && tsc --build --emitDeclarationOnly --declaration --declarationMap --force", + "build": "npm run lint:ci && vite build && tsc --build --emitDeclarationOnly --declaration --declarationMap --force", + "lint:ci": "npx biome ci", "bench": "vitest bench", "bench:ci": "CI=true vitest bench", "clean": "rm -rf dist",