fix Windows path handling in kensai MCP server #13
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@v4 | |
| - run: corepack enable pnpm | |
| - uses: actions/setup-node@v4 | |
| 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: ["lts/*", "26"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: corepack enable pnpm | |
| - uses: actions/setup-node@v4 | |
| 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 |