From 76e197a21b1009a3b1be93c4f5056a8c2624948b Mon Sep 17 00:00:00 2001 From: openhands Date: Sun, 12 Oct 2025 19:54:02 +0000 Subject: [PATCH] Fix npm workspaces in CI --- .woodpecker/ci.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.woodpecker/ci.yml b/.woodpecker/ci.yml index f8d6a0f..bb78275 100644 --- a/.woodpecker/ci.yml +++ b/.woodpecker/ci.yml @@ -45,22 +45,19 @@ steps: set -euo pipefail npm config set fund false npm config set audit false - npm ci --prefix kraiken-lib --no-audit --no-fund ./scripts/build-kraiken-lib.sh npm ci --prefix landing --no-audit --no-fund - npm ci --prefix web-app --no-audit --no-fund - npm ci --prefix services/ponder --no-audit --no-fund - npm ci --prefix services/txnBot --no-audit --no-fund - npm run lint --prefix kraiken-lib - npm test --prefix kraiken-lib -- --runInBand npm run lint --prefix landing npm run build --prefix landing + npm ci --prefix web-app --no-audit --no-fund npm run lint --prefix web-app npm run test --prefix web-app -- --run npm run build --prefix web-app + npm ci --prefix services/ponder --no-audit --no-fund npm run lint --prefix services/ponder npm run build --prefix services/ponder + npm ci --prefix services/txnBot --no-audit --no-fund npm run lint --prefix services/txnBot - npm run test --prefix services/txnBot + npm run test --prefix services/txnBot -- --runInBand npm run build --prefix services/txnBot '