Skip to content

fix: upgrade @modelcontextprotocol/sdk to 1.24.3 (CVE-2025-66414) #125

fix: upgrade @modelcontextprotocol/sdk to 1.24.3 (CVE-2025-66414)

fix: upgrade @modelcontextprotocol/sdk to 1.24.3 (CVE-2025-66414) #125

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run type check
run: pnpm run typecheck
- name: Run tests
run: pnpm test