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
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |