Skip to content
This repository was archived by the owner on Jul 27, 2026. It is now read-only.

feat(ui): enhance Container Inspector with binding health checks and … #19

feat(ui): enhance Container Inspector with binding health checks and …

feat(ui): enhance Container Inspector with binding health checks and … #19

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
- feature/v4.0
pull_request:
branches: ["main", "feature/v4.0"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.18.0"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build all workspaces
run: npm run build --workspaces --if-present
- name: Test all workspaces
run: npm run test --workspaces --if-present