From 2c0803904da9f4978fa964f66fdd93445f7ae547 Mon Sep 17 00:00:00 2001 From: kitsuyui Date: Sat, 27 Jun 2026 18:26:14 +0900 Subject: [PATCH] ci: run octocov checks in parallel Use GitHub Actions step-level parallel execution for independent lint, test, and build checks before the octocov reporting step. --- .github/workflows/octocov.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/octocov.yml b/.github/workflows/octocov.yml index 43de18f..7f4b55b 100644 --- a/.github/workflows/octocov.yml +++ b/.github/workflows/octocov.yml @@ -26,14 +26,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 # See also: https://github.com/k1LoW/octocov-action - name: Report coverage with octocov