Skip to content

deps: bump @modelcontextprotocol/sdk from 1.25.3 to 1.26.0 #101

deps: bump @modelcontextprotocol/sdk from 1.25.3 to 1.26.0

deps: bump @modelcontextprotocol/sdk from 1.25.3 to 1.26.0 #101

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test --if-present