Skip to content

feat(calm-explorer): add interactive CALM architecture explorer #1863

feat(calm-explorer): add interactive CALM architecture explorer

feat(calm-explorer): add interactive CALM architecture explorer #1863

Workflow file for this run

name: Build Shared
permissions:
contents: read
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
jobs:
shared:
name: Build, Test, and Lint Shared Module
runs-on: ubuntu-latest
steps:
- name: Checkout PR Branch
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Setup Node.js
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
with:
node-version: v22
- name: Install workspace
run: npm ci
- name: Lint Shared Module
run: npm run lint --workspace=shared
- name: Build workspace
run: npm run build:shared
- name: Run tests with coverage for Shared
run: npm run test --workspace=shared