Skip to content

Harden tools and deployment #2

Harden tools and deployment

Harden tools and deployment #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: read
env:
NODE_VERSION: "24"
jobs:
quality:
name: Check and runtime tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Validate structure and skills
run: npm run check
- name: Build static site
run: npm run build
- name: Test A2A runtime
run: npm run a2a:test
- name: Test MCP runtime
run: npm run mcp:test
- name: Test Docker image
run: npm run docker:test
- name: Audit dependencies
run: npm audit --audit-level=high