Skip to content

Commit

Permalink
use keys in pre step as well
Browse files Browse the repository at this point in the history
  • Loading branch information
rarmatei committed Dec 19, 2024
1 parent bb63765 commit 5047f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow-steps/install-node-modules/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function runCommandWithRetries(command, maxRetries) {

while (retryCount < maxRetries) {
try {
execSync(command);
execSync(command, { stdio: 'inherit' });
patchJest();
console.log('Installed dependencies successfully!');
break;
Expand Down

0 comments on commit 5047f31

Please sign in to comment.