Skip to content

Commit 4445ee9

Browse files
authored
Build Agent Evals for commits (#9381)
1 parent 3dfb5d3 commit 4445ee9

File tree

3 files changed

+470
-117
lines changed

3 files changed

+470
-117
lines changed

.github/workflows/node-test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,27 @@ jobs:
125125
# - uses: codecov/codecov-action@v3
126126
# if: matrix.node-version == '20'
127127

128+
agent_evals_build:
129+
runs-on: ubuntu-latest
130+
strategy:
131+
matrix:
132+
node-version:
133+
- "22"
134+
steps:
135+
- uses: actions/checkout@v4
136+
- uses: actions/setup-node@v3
137+
with:
138+
node-version: ${{ matrix.node-version }}
139+
cache: npm
140+
cache-dependency-path: scripts/agent-evals/package-lock.json
141+
142+
- run: npm i -g [email protected]
143+
- run: npm ci
144+
- run: npm install
145+
working-directory: scripts/agent-evals
146+
- run: npm run build
147+
working-directory: scripts/agent-evals
148+
128149
unit:
129150
runs-on: ubuntu-latest
130151
strategy:

0 commit comments

Comments
 (0)