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 1f50bf2 commit 8835abeCopy full SHA for 8835abe
bin/benchmark/run.mjs
@@ -182,11 +182,13 @@ export async function runBenchmark({ force = false, reuse = false } = {}) {
182
const output = await run('node', args, { cwd: EXPERIMENT_DIRS.app });
183
const msgFile = join(BENCH_ROOT, 'msg.txt');
184
185
- await writeFile(
186
- msgFile,
187
- output.stdout.split('Benchmark Results Summary').pop() ?? output.stdout,
188
- 'utf8'
189
- );
+ if (!process.env.CI) {
+ await writeFile(
+ msgFile,
+ output.stdout.split('Benchmark Results Summary').pop() ?? output.stdout,
+ 'utf8'
190
+ );
191
+ }
192
193
return {
194
benchRoot: BENCH_ROOT,
0 commit comments