Fix npm workspaces in CI

This commit is contained in:
openhands 2025-10-12 19:54:02 +00:00
parent ea0226179c
commit 76e197a21b

View file

@ -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
'