Skip to content

chore(deps): update dependency @modelcontextprotocol/sdk to v1.20.0 #385

chore(deps): update dependency @modelcontextprotocol/sdk to v1.20.0

chore(deps): update dependency @modelcontextprotocol/sdk to v1.20.0 #385

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [22.x, 24.x]
services:
redis:
image: redis:7-alpine
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run CI pipeline
run: npm run ci
env:
REDIS_HOST: localhost
REDIS_PORT: 6379
REDIS_DB: 1