Skip to content

Commit f8498bf

Browse files
committed
Bumps node modules
1 parent 84907d7 commit f8498bf

6 files changed

Lines changed: 7979 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,38 @@ jobs:
7676
- name: build
7777
working-directory: agents/agent-mastra
7878
run: bun run build
79+
80+
lint-build-mastra-mcp-client:
81+
strategy:
82+
matrix:
83+
node-version: [22.x]
84+
85+
runs-on: ubuntu-latest
86+
steps:
87+
- uses: actions/checkout@v5
88+
89+
- name: Use Node.js ${{ matrix.node-version }}
90+
uses: actions/setup-node@v4
91+
with:
92+
node-version: ${{ matrix.node-version }}
93+
check-latest: true
94+
95+
- uses: pnpm/action-setup@v4
96+
name: Install pnpm
97+
with:
98+
run_install: |
99+
- recursive: true
100+
args: [--no-frozen-lockfile]
101+
cwd: mpc/clients/mastra-mcp-client
102+
- args: [--global, esbuild]
103+
package_json_file: mpc/clients/mastra-mcp-client/package.json
104+
105+
- uses: oven-sh/setup-bun@v2
106+
107+
- name: lint
108+
working-directory: mpc/clients/mastra-mcp-client
109+
run: bun run lint
110+
111+
- name: build
112+
working-directory: mpc/clients/mastra-mcp-client
113+
run: bun run build

mpc/clients/mastra-mcp-client/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"dependencies": {
2020
"@ai-sdk/amazon-bedrock": "^2.2.12",
2121
"@ai-sdk/azure": "^1.3.25",
22-
"@mastra/core": "^0.10.15",
22+
"@mastra/core": "^0.13.2",
2323
"@mastra/mcp": "^0.10.11",
2424
"langfuse-vercel": "^3.38.4",
2525
"zod": "^3.25.76"
@@ -37,5 +37,6 @@
3737
"tsx": "^4.20.4",
3838
"typescript": "^5.9.2",
3939
"typescript-eslint": "^8.39.1"
40-
}
40+
},
41+
"packageManager": "pnpm@10.14.0"
4142
}

0 commit comments

Comments
 (0)