@@ -140,6 +140,7 @@ build:linux:
140
140
- >
141
141
nix-shell --arg ci true --run $'
142
142
npm test -- --ci --coverage;
143
+ npm run bench;
143
144
'
144
145
artifacts :
145
146
when : always
@@ -149,6 +150,7 @@ build:linux:
149
150
coverage_report :
150
151
coverage_format : cobertura
151
152
path : ./tmp/coverage/cobertura-coverage.xml
153
+ metrics : ./benches/results/metrics.txt
152
154
coverage : ' /All files[^|]*\|[^|]*\s+([\d\.]+)/'
153
155
rules :
154
156
# Runs on staging commits and ignores version commits
@@ -169,6 +171,7 @@ build:windows:
169
171
- npm install --ignore-scripts
170
172
- $env:Path = "$(npm root)\.bin;" + $env:Path
171
173
- npm test -- --ci --coverage
174
+ - npm run bench
172
175
artifacts :
173
176
when : always
174
177
reports :
@@ -177,6 +180,7 @@ build:windows:
177
180
coverage_report :
178
181
coverage_format : cobertura
179
182
path : ./tmp/coverage/cobertura-coverage.xml
183
+ metrics : ./benches/results/metrics.txt
180
184
coverage : ' /All files[^|]*\|[^|]*\s+([\d\.]+)/'
181
185
rules :
182
186
# Runs on staging commits and ignores version commits
@@ -197,6 +201,7 @@ build:macos:
197
201
- npm install --ignore-scripts
198
202
- export PATH="$(npm root)/.bin:$PATH"
199
203
- npm test -- --ci --coverage
204
+ - npm run bench
200
205
artifacts :
201
206
when : always
202
207
reports :
@@ -205,6 +210,7 @@ build:macos:
205
210
coverage_report :
206
211
coverage_format : cobertura
207
212
path : ./tmp/coverage/cobertura-coverage.xml
213
+ metrics : ./benches/results/metrics.txt
208
214
coverage : ' /All files[^|]*\|[^|]*\s+([\d\.]+)/'
209
215
rules :
210
216
# Runs on staging commits and ignores version commits
0 commit comments