Skip to content

Adjusted styling on zoom controls in CALM Visualizer #21

Adjusted styling on zoom controls in CALM Visualizer

Adjusted styling on zoom controls in CALM Visualizer #21

name: Build CALM Visualizer
on:
pull_request:
branches:
- "main"
paths:
- "calm-visualizer/**"
push:
branches:
- "main"
paths:
- "calm-visualizer/**"
jobs:
shared:
name: Build, Test, and Lint Shared Module
runs-on: ubuntu-latest
steps:
- name: Checkout PR Branch
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: v20
- name: Install workspace
run: npm ci
- name: Lint Shared Module
run: npm run lint --workspace=calm-visualizer
- name: Build workspace
run: npm run build --workspace=calm-visualizer
- name: Run tests for Shared
run: npm run test --workspace=calm-visualizer