Skip to content

Commit

Permalink
ci: fix weird test creation test issue with yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufkandemir committed Mar 12, 2024
1 parent f0b1fb2 commit 64577ec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions create-quasar/scripts/create-test-project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ type CreateProjectOptions = {
export async function createProject({ scriptType, appEngine, packageManager }: CreateProjectOptions) {
// To bypass Corepack enforcing what's specified in the closest package.json file that has the 'packageManager' field
process.env.COREPACK_ENABLE_STRICT = '0';
// See https://github.com/yarnpkg/yarn/issues/9015
process.env.SKIP_YARN_COREPACK_CHECK = '1';
// To alter the behavior to run correctly within this script
process.env.CREATE_TEST_PROJECT_OVERRIDE = 'true';

Expand Down

0 comments on commit 64577ec

Please sign in to comment.