diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 91a2e96..35de3ad 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -130,10 +130,22 @@ jobs: - name: ๐Ÿ“ฆ Install dependencies run: npm ci - - name: โœ… Run full verification - run: npm run verify + - name: ๐Ÿ” Type check + run: npm run type-check - - name: โœ… Verification passed + - name: ๐ŸŽจ Lint + run: npm run lint + + - name: ๐ŸŽจ Format check + run: npm run format:check + + - name: ๐Ÿงช Test + run: npm run test + + - name: ๐Ÿ—๏ธ Build + run: npm run build + + - name: โœ… All checks passed run: echo "โœ… All packages verified successfully" >> $GITHUB_STEP_SUMMARY publish: diff --git a/packages/core/package.json b/packages/core/package.json index e468f64..4591602 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -27,8 +27,7 @@ "test:watch": "vitest", "test:coverage": "vitest run --coverage", "clean": "rm -rf dist *.tsbuildinfo coverage src/**/*.d.ts", - "verify": "npm run type-check && npm run lint && npm run format:check && npm run test && npm run build", - "prepublishOnly": "npm run verify" + "verify": "npm run type-check && npm run lint && npm run format:check && npm run build" }, "keywords": [ "agentkit", diff --git a/packages/platform/package.json b/packages/platform/package.json index 9508539..61f1d81 100644 --- a/packages/platform/package.json +++ b/packages/platform/package.json @@ -31,8 +31,7 @@ "test:watch": "vitest", "test:coverage": "vitest run --coverage", "clean": "rm -rf dist *.tsbuildinfo coverage src/**/*.d.ts", - "verify": "npm run type-check && npm run lint && npm run format:check && npm run test && npm run build", - "prepublishOnly": "npm run verify" + "verify": "npm run type-check && npm run lint && npm run format:check && npm run build" }, "keywords": [ "agentage",