We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dfb5d3 commit 4445ee9Copy full SHA for 4445ee9
.github/workflows/node-test.yml
@@ -125,6 +125,27 @@ jobs:
125
# - uses: codecov/codecov-action@v3
126
# if: matrix.node-version == '20'
127
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
148
149
unit:
150
runs-on: ubuntu-latest
151
strategy:
0 commit comments