Skip to content

Commit b600a1f

Browse files
committed
prettier fix
1 parent 95b9cd3 commit b600a1f

File tree

3 files changed

+3163
-1445
lines changed

3 files changed

+3163
-1445
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@ jobs:
1010
test:
1111
name: Test and Lint
1212
runs-on: ubuntu-latest
13-
13+
1414
steps:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
17-
17+
1818
- name: Setup Node.js
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: '22'
22-
cache: 'npm'
23-
21+
node-version: "22"
22+
cache: "npm"
23+
2424
- name: Install dependencies
2525
run: npm ci
26-
26+
2727
- name: Run linting
2828
run: npm run lint
29-
29+
3030
- name: Check formatting
31-
run: npm run prettier:check
32-
31+
run: npm run format
32+
3333
- name: Build project
3434
run: npm run build
35-
35+
3636
- name: Run evaluation tests
3737
env:
3838
BROWSERBASE_API_KEY: ${{ secrets.BROWSERBASE_API_KEY }}

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
"smithery": "npx @smithery/cli dev src/index.ts",
2929
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
3030
"lint": "eslint . --ext .ts",
31-
"prettier:check": "prettier --check .",
32-
"prettier:fix": "prettier --write .",
31+
"format": "prettier --write .",
3332
"clean": "rm -rf dist",
3433
"prepublishOnly": "npm run clean && npm run build",
3534
"test": "npm run build && tsx evals/run-evals.ts run --config evals/mcp-eval-basic.config.json && tsx evals/run-evals.ts run --config evals/mcp-eval-minimal.config.json",

0 commit comments

Comments
 (0)