Skip to content

Merge pull request #51 from nestm-dev/codex/npm-registry-propagation #81

Merge pull request #51 from nestm-dev/codex/npm-registry-propagation

Merge pull request #51 from nestm-dev/codex/npm-registry-propagation #81

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
CI: "true"
jobs:
check:
name: Check
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: pnpm/setup@v2
with:
install: false
- uses: actions/setup-node@v7
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run check
test:
name: Test (Node ${{ matrix.node }})
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
node: ["22.13.0", "24"]
steps:
- uses: actions/checkout@v7
- uses: pnpm/setup@v2
with:
install: false
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run test
packages:
name: Build and validate packages
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
- uses: pnpm/setup@v2
with:
install: false
- uses: actions/setup-node@v7
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run verify:apps
- run: pnpm --filter "./packages/*" exec publint --strict
- run: pnpm run verify:attw
conformance:
name: Official MCP conformance suite
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- uses: pnpm/setup@v2
with:
install: false
- uses: actions/setup-node@v7
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
# The fixture imports @nestm/mcp-server through its published export map.
- run: pnpm --filter "./packages/*" run build
- run: pnpm --filter @nestm/mcp-conformance-harness run conformance