From f86f66ec0b61796c2b7f5b742d16942813e656ee Mon Sep 17 00:00:00 2001 From: kitsuyui Date: Sat, 27 Jun 2026 18:12:57 +0900 Subject: [PATCH] ci: run independent test checks in parallel Use GitHub Actions step-level parallel execution for the independent lint, test, and build checks after dependency installation. Keep generated artifact verification sequential so it still observes the build output. --- .github/workflows/test.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 060b50c..fb6d4b0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,14 +29,15 @@ jobs: - name: Install dependencies run: bun install --frozen-lockfile - - name: Lint - run: bun run lint + - parallel: + - name: Lint + run: bun run lint - - name: Test - run: bun run test + - name: Test + run: bun run test - - name: Build - run: bun run build + - name: Build + run: bun run build - name: Verify dist is up to date run: git diff --exit-code -- dist