Skip to content

docs: add example for creating an architecture defintion #897

docs: add example for creating an architecture defintion

docs: add example for creating an architecture defintion #897

name: Build CALM Explorer
permissions:
contents: read
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
jobs:
calm-explorer:
name: Build, Test, and Lint CALM Explorer
runs-on: ubuntu-latest
steps:
- name: Checkout PR Branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
node-version: v22
- name: Install workspace
run: npm ci
- name: Lint Module
run: npm run lint --workspace=experimental/calm-explorer
- name: Build workspace
run: npm run build --workspace=experimental/calm-explorer
- name: Run tests
run: npm run test:run --workspace=experimental/calm-explorer