Skip to content

added support for plural/singular detection by default #43

added support for plural/singular detection by default

added support for plural/singular detection by default #43

Workflow file for this run

# Cache: 2025-09-03 02:13:59
name: MCP Server
on:
push:
branches: [main]
paths:
- "renamify-mcp/**"
- ".github/workflows/mcp.yml"
pull_request:
branches: [main]
paths:
- "renamify-mcp/**"
- ".github/workflows/mcp.yml"
jobs:
mcp_test:
name: Test MCP Server
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: renamify-mcp
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('renamify-mcp/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Run TypeScript checks
run: pnpm exec tsc --noEmit
- name: Run Biome checks
if: runner.os != 'Windows'
run: pnpm check
- name: Build
run: pnpm build
- name: Run tests with coverage
run: pnpm exec vitest run --coverage