Fix CLI shell references and refactor MCP client defaults #50
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: Validate Repository Structure | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| validate: | |
| name: Validate Repository (Node ${{ matrix.node-version }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22, 24] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| cache-dependency-path: cli/package-lock.json | |
| - name: Install CLI dependencies | |
| working-directory: cli | |
| run: npm ci | |
| - name: Build CLI | |
| working-directory: cli | |
| run: npm run build | |
| - name: Test CLI | |
| working-directory: cli | |
| run: npm test | |
| - name: Run validation script | |
| shell: pwsh | |
| run: ./scripts/validate-repo.ps1 |