Skip to content

Commit 73442df

Browse files
committed
refactor(bazel): use pnpm for running size check scripts (#2923)
Use pnpm instead of yarn for running size check scripts in integration tests PR Close #2923
1 parent 8cf64db commit 73442df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bazel/integration/test_runner/size-tracking.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class SizeTracker {
4949
debug(`Skipping size tracking as no size.json file was found at ${sizeJsonFilePath}`);
5050
return;
5151
}
52-
const success = await runCommandInChildProcess('yarn', ['build'], testWorkingDir, commandEnv);
52+
const success = await runCommandInChildProcess('pnpm', ['build'], testWorkingDir, commandEnv);
5353
if (!success) {
5454
throw Error('Failed to build for size tracking.');
5555
}

0 commit comments

Comments
 (0)