Skip to content

feat: protocol TIER-3 schemas (cli, client, mcp, custom-models, mission-decomposition) #128

feat: protocol TIER-3 schemas (cli, client, mcp, custom-models, mission-decomposition)

feat: protocol TIER-3 schemas (cli, client, mcp, custom-models, mission-decomposition) #128

Workflow file for this run

name: Typecheck
on: pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
typecheck:
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Cache dependencies
uses: actions/cache@v4
id: cache
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Typecheck
run: npm run typecheck