File tree Expand file tree Collapse file tree 3 files changed +3163
-1445
lines changed Expand file tree Collapse file tree 3 files changed +3163
-1445
lines changed Original file line number Diff line number Diff line change @@ -10,29 +10,29 @@ jobs:
10
10
test :
11
11
name : Test and Lint
12
12
runs-on : ubuntu-latest
13
-
13
+
14
14
steps :
15
15
- name : Checkout code
16
16
uses : actions/checkout@v4
17
-
17
+
18
18
- name : Setup Node.js
19
19
uses : actions/setup-node@v4
20
20
with :
21
- node-version : ' 22 '
22
- cache : ' npm'
23
-
21
+ node-version : " 22 "
22
+ cache : " npm"
23
+
24
24
- name : Install dependencies
25
25
run : npm ci
26
-
26
+
27
27
- name : Run linting
28
28
run : npm run lint
29
-
29
+
30
30
- name : Check formatting
31
- run : npm run prettier:check
32
-
31
+ run : npm run format
32
+
33
33
- name : Build project
34
34
run : npm run build
35
-
35
+
36
36
- name : Run evaluation tests
37
37
env :
38
38
BROWSERBASE_API_KEY : ${{ secrets.BROWSERBASE_API_KEY }}
Original file line number Diff line number Diff line change 28
28
"smithery" : " npx @smithery/cli dev src/index.ts" ,
29
29
"inspector" : " npx @modelcontextprotocol/inspector build/index.js" ,
30
30
"lint" : " eslint . --ext .ts" ,
31
- "prettier:check" : " prettier --check ." ,
32
- "prettier:fix" : " prettier --write ." ,
31
+ "format" : " prettier --write ." ,
33
32
"clean" : " rm -rf dist" ,
34
33
"prepublishOnly" : " npm run clean && npm run build" ,
35
34
"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" ,
You can’t perform that action at this time.
0 commit comments