From eb3120a8fdaa103cb19b0cc5843a2ed51df27adf Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Mon, 2 Feb 2026 12:57:49 +0900 Subject: [PATCH] Fix CI --- .github/workflows/harness-ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/harness-ci.yml b/.github/workflows/harness-ci.yml index b228f59..9b0231f 100644 --- a/.github/workflows/harness-ci.yml +++ b/.github/workflows/harness-ci.yml @@ -57,6 +57,12 @@ jobs: env: CI: true run: npm run test suitep2p/ - - name: Stop test services - if: always() - run: npm run test:docker-all:stop \ No newline at end of file + - name: Stop test services (CouchDB) + run: npm run test:docker-couchdb:stop + if: ${{ inputs.testsuite == '' || inputs.testsuite == 'suite/' }} + - name: Stop test services (MinIO) + run: npm run test:docker-s3:stop + if: ${{ inputs.testsuite == '' || inputs.testsuite == 'suite/' }} + - name: Stop test services (Nostr Relay + WebPeer) + run: npm run test:docker-p2p:stop + if: ${{ inputs.testsuite == '' || inputs.testsuite == 'suitep2p/' }} \ No newline at end of file