defer line counting from PathIndex build to manifest #28
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: Kensai Review MCP | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "claude/kensai/mcp/review/**" | |
| - ".github/workflows/kensai-review-mcp.yml" | |
| pull_request: | |
| paths: | |
| - "claude/kensai/mcp/review/**" | |
| - ".github/workflows/kensai-review-mcp.yml" | |
| defaults: | |
| run: | |
| working-directory: claude/kensai/mcp/review | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v6 | |
| with: | |
| version: "latest" | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "26" | |
| cache: pnpm | |
| cache-dependency-path: claude/kensai/mcp/review/pnpm-lock.yaml | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm lint | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest", "windows-latest"] | |
| node-version: ["24", "26"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v6 | |
| with: | |
| version: "latest" | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| cache-dependency-path: claude/kensai/mcp/review/pnpm-lock.yaml | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm test |