Harden tools and deployment #2
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: 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 |