Skip to content

feat(cli): JSON-RPC server for PC MCAL-CAN #306

feat(cli): JSON-RPC server for PC MCAL-CAN

feat(cli): JSON-RPC server for PC MCAL-CAN #306

name: TypeScript Type Check
on:
pull_request:
branches: [master]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm install
- name: Run full TypeScript type check
run: npm run typecheck
- name: Verify type check results
run: |
echo "✅ All TypeScript type checks passed successfully"