Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 1 addition & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 1 addition & 2 deletions packages/platform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading