From dee4e47c050590e82be3a488b72bb455dbc5f693 Mon Sep 17 00:00:00 2001 From: Zefir Kirilov Date: Tue, 31 Mar 2026 09:54:58 +0300 Subject: [PATCH 1/2] Removed unused CI requirement for `build` step for Bun tests --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93ad874..b3aeaa4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,8 +103,6 @@ jobs: test-bun: name: Test on Bun runs-on: ubuntu-latest - needs: build - steps: - name: Checkout repository uses: actions/checkout@v6 From 9ef7f20d2be9f099d6c60906fbf6134cf1322760 Mon Sep 17 00:00:00 2001 From: Zefir Kirilov Date: Tue, 31 Mar 2026 09:57:30 +0300 Subject: [PATCH 2/2] renamed Node.js tests step to `test-node` for consistency --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3aeaa4..30b96c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: name: package path: cldn-ip-0.0.0-dev.tgz - test: + test-node: name: Test on Node.js ${{ matrix.node }} runs-on: ubuntu-latest needs: build @@ -119,7 +119,7 @@ jobs: publish: name: Publish needs: - - test + - test-node - test-deno - test-bun if: github.event_name == 'release'