From 1f2fb823a39eb8778e20b70dbdba859f2b6e551f Mon Sep 17 00:00:00 2001 From: cpojer Date: Sat, 31 Jan 2026 23:15:15 +0900 Subject: [PATCH] fix: CI: Run build and lint together since lint depends on build now. --- .github/workflows/ci.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62b43d6390..071d16cd6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,21 +71,15 @@ jobs: fail-fast: false matrix: include: - - runtime: nodegs - task: build - command: pnpm build - runtime: node task: tsgo command: pnpm tsgo - runtime: node task: lint - command: pnpm lint + command: pnpm build && pnpm lint - runtime: node task: test command: pnpm canvas:a2ui:bundle && pnpm test - - runtime: node - task: build - command: pnpm build - runtime: node task: protocol command: pnpm protocol:check @@ -203,14 +197,11 @@ jobs: matrix: include: - runtime: node - task: lint - command: pnpm lint + task: build & lint + command: pnpm build && pnpm lint - runtime: node task: test command: pnpm canvas:a2ui:bundle && pnpm test - - runtime: node - task: build - command: pnpm build - runtime: node task: protocol command: pnpm protocol:check