Skip to content

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

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

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

name: Build Calm Widgets
permissions:
contents: read
on:
pull_request:
branches:
- 'main'
- 'release*'
push:
branches:
- 'main'
- 'release*'
jobs:
shared:
name: Build, Test, and Lint Calm Widgets 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 Shared Module
run: npm run lint --workspace=calm-widgets
- name: Build workspace
run: npm run build:calm-widgets
- name: Run tests with coverage for Calm Widgets
run: npm run test:calm-widgets