Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '17 2 * * 1'

jobs:
build-and-test:
Expand All @@ -16,5 +18,14 @@ jobs:
node-version: 20
cache: npm
- run: npm ci
- run: npm audit --omit=dev
- run: npm run build
- run: npm test
# mcp-api-list.md is generated from source; fail if a tool change forgot to regenerate it.
- name: Check mcp-api-list.md is fresh
run: |
npm run gen:api-list
git diff --exit-code mcp-api-list.md || {
echo "::error::mcp-api-list.md is stale — run 'npm run gen:api-list' and commit the result."
exit 1
}
Loading
Loading