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",