Clarify MCP server start behavior, add info on getting absolute path … #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- run: npm ci | |
- name: Check TypeScript definitions | |
run: npm run check:schema:ts | |
- name: Check schema.json files are up to date | |
run: npm run check:schema:json | |
- name: Check schema.mdx files are up to date | |
run: npm run check:schema:md |