Skip to content

Commit 9dbb42e

Browse files
committed
fix: add build step to test job before comprehensive validation
- Build MCP servers before running connectivity tests - Ensure comprehensive validation runs with built components - Fix CI/CD pipeline MCP server file not found errors
1 parent 3bac168 commit 9dbb42e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci-cd.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,14 @@ jobs:
5555
- name: Run unit tests
5656
run: npm run test:unit
5757

58-
- name: Run integration tests
59-
run: npm run test:integration
58+
- name: Run integration tests
59+
run: npm run test:integration
6060

61-
- name: Run comprehensive validation
62-
run: npm run test:comprehensive
61+
- name: Build project
62+
run: npm run build:all
63+
64+
- name: Run comprehensive validation
65+
run: npm run test:comprehensive
6366

6467
- name: Run security audit
6568
run: npm run security-audit

0 commit comments

Comments
 (0)