Skip to content

Commit e33c2c9

Browse files
committed
cd renamify-mcp &&
1 parent e8d4b29 commit e33c2c9

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
version: latest
5050

5151
- name: Install dependencies
52-
run: cd docs && pnpm install --frozen-lockfile
52+
run: cd docs && pnpm install
5353

5454
- name: Build with Astro
5555
run: cd docs && pnpm run build

.github/workflows/mcp.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ jobs:
1616
mcp_test:
1717
name: Test MCP Server
1818
runs-on: ${{ matrix.os }}
19-
defaults:
20-
run:
21-
working-directory: renamify-mcp
2219

2320
strategy:
2421
matrix:
@@ -53,16 +50,16 @@ jobs:
5350
${{ runner.os }}-pnpm-store-
5451
5552
- name: Install dependencies
56-
run: pnpm install --frozen-lockfile --ignore-workspace
53+
run: cd renamify-mcp && pnpm install
5754

5855
- name: Run TypeScript checks
59-
run: pnpm exec tsc --noEmit
56+
run: cd renamify-mcp && pnpm exec tsc --noEmit
6057

6158
- name: Run Biome checks
62-
run: pnpm run check
59+
run: cd renamify-mcp && pnpm run check
6360

6461
- name: Run tests with coverage
65-
run: pnpm exec vitest run --coverage
62+
run: cd renamify-mcp && pnpm exec vitest run --coverage
6663

6764
- name: Build
68-
run: pnpm run build
65+
run: cd renamify-mcp && pnpm run build

0 commit comments

Comments
 (0)