Skip to content

Commit

Permalink
Revert "Performance tests: Install locked dependencies without resolu…
Browse files Browse the repository at this point in the history
…tion"

This reverts commit 314b474.
  • Loading branch information
dmsnell committed Oct 20, 2022
1 parent ab36967 commit 465b5ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions bin/plugin/commands/performance.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,10 @@ async function setUpGitBranch( branch, environmentDirectory ) {
await git.checkoutRemoteBranch( environmentDirectory, branch );

log( ' >> Building the ' + formats.success( branch ) + ' branch' );
await runShellScript( 'npm ci && npm run build', environmentDirectory );
await runShellScript(
'npm install && npm run build',
environmentDirectory
);
}

/**
Expand Down Expand Up @@ -232,7 +235,7 @@ async function runPerformanceTests( branches, options ) {
}
log( ' >> Installing dependencies and building packages' );
await runShellScript(
'npm ci && npm run build:packages',
'npm install && npm run build:packages',
performanceTestDirectory
);
log( ' >> Creating the environment folders' );
Expand Down

0 comments on commit 465b5ac

Please sign in to comment.