From ab9f45f9085dc89d60d717db19050eca26e708e0 Mon Sep 17 00:00:00 2001 From: robonen Date: Sat, 14 Feb 2026 22:52:00 +0700 Subject: [PATCH] refactor(ci): separate build and lint steps in CI workflow --- .github/workflows/ci.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 76d7ac5..b2233aa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,5 +31,11 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile + - name: Build + run: pnpm build + + - name: Lint + run: pnpm lint + - name: Test - run: pnpm build && pnpm test \ No newline at end of file + run: pnpm test \ No newline at end of file