File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -19,24 +19,19 @@ jobs:
19
19
uses : actions/setup-node@v4
20
20
with :
21
21
node-version : ' 18'
22
- cache : ' pnpm'
23
-
24
- - name : Install pnpm
25
- uses : pnpm/action-setup@v4
26
- with :
27
- version : 8
22
+ cache : ' npm'
28
23
29
24
- name : Install dependencies
30
- run : pnpm install --frozen-lockfile
25
+ run : npm ci
31
26
32
27
- name : Run linting
33
- run : pnpm lint
28
+ run : npm run lint
34
29
35
30
- name : Check formatting
36
- run : pnpm prettier:check
31
+ run : npm run prettier:check
37
32
38
33
- name : Build project
39
- run : pnpm build
34
+ run : npm run build
40
35
41
36
- name : Run evaluation tests
42
37
env :
45
40
ANTHROPIC_API_KEY : ${{ secrets.ANTHROPIC_API_KEY }}
46
41
GEMINI_API_KEY : ${{ secrets.GEMINI_API_KEY }}
47
42
run : |
48
- pnpm test
43
+ npm test
You can’t perform that action at this time.
0 commit comments