From 735b9c13c29acd5e889ca74288f3e9d93ad974aa Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Mon, 4 Aug 2025 19:29:24 +0000 Subject: [PATCH] refactor(bazel): use pnpm for running size check scripts Use pnpm instead of yarn for running size check scripts in integration tests --- bazel/integration/test_runner/size-tracking.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/integration/test_runner/size-tracking.mts b/bazel/integration/test_runner/size-tracking.mts index 125ed9bfe..4ebb2400a 100644 --- a/bazel/integration/test_runner/size-tracking.mts +++ b/bazel/integration/test_runner/size-tracking.mts @@ -49,7 +49,7 @@ export class SizeTracker { debug(`Skipping size tracking as no size.json file was found at ${sizeJsonFilePath}`); return; } - const success = await runCommandInChildProcess('yarn', ['build'], testWorkingDir, commandEnv); + const success = await runCommandInChildProcess('pnpm', ['build'], testWorkingDir, commandEnv); if (!success) { throw Error('Failed to build for size tracking.'); }