From 4a0cb7c615e6b5293bc188f8b024139eda49ed9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=A9=98?= Date: Tue, 26 May 2026 05:04:17 +0000 Subject: [PATCH] ci: replace lint+typecheck with unified check step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes CI failure — 'lint' script didn't exist in package.json. bun run check already covers tsc + biome + log-tag lint. --- .gitea/workflows/ci.yml | 7 ++----- .gitignore | 1 + biome.json | 1 + 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 479c65c..097f270 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,11 +18,8 @@ jobs: - name: Install dependencies run: bun install - - name: Lint - run: bun run lint - - - name: Type check - run: bun run typecheck + - name: Check + run: bun run check - name: Test run: bun test diff --git a/.gitignore b/.gitignore index 27fe16e..09d1844 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ packages/workflow-template-develop/develop.esm.js *.py .claude tmp.worktrees/ +.worktrees/ diff --git a/biome.json b/biome.json index d08b98a..f72dd1a 100644 --- a/biome.json +++ b/biome.json @@ -4,6 +4,7 @@ "includes": [ "**", "!**/dist", + "!.worktrees", "!**/node_modules", "!**/legacy-packages", "!scripts",