Skip to content

feat(cli): add CALM Hub architecture and namespace commands #768

feat(cli): add CALM Hub architecture and namespace commands

feat(cli): add CALM Hub architecture and namespace commands #768

name: Build CALM Server
permissions:
contents: read
on:
pull_request:
branches:
- 'main'
- 'release*'
push:
branches:
- 'main'
- 'release*'
jobs:
calm-server:
name: Build, Test, and Lint CALM Server Module
runs-on: ubuntu-latest
steps:
- name: Checkout PR Branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
- name: Install workspace
run: npm ci
- name: Lint CALM Server Module
run: npm run lint --workspace=calm-server
- name: Build workspace
run: npm run build:calm-server
- name: Run tests with coverage for CALM Server
run: npm run test:calm-server