Skip to content

feat(calm): add deployment decorator standard to calm draft schema #133

feat(calm): add deployment decorator standard to calm draft schema

feat(calm): add deployment decorator standard to calm draft schema #133

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@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: v22
- 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