diff --git a/packages/e2e-test/src/commands/run.ts b/packages/e2e-test/src/commands/run.ts index 5f08cb2ca9..5b1df1129a 100644 --- a/packages/e2e-test/src/commands/run.ts +++ b/packages/e2e-test/src/commands/run.ts @@ -50,6 +50,9 @@ export async function run() { print('Building dist workspace'); const workspaceDir = await buildDistWorkspace('workspace', rootDir); + // Otherwise yarn will refuse to install with CI=true + process.env.YARN_ENABLE_IMMUTABLE_INSTALLS = 'false'; + print('Creating a Backstage App'); const appDir = await createApp('test-app', workspaceDir, rootDir);