Skip to content

Commit

Permalink
Update package.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili committed Jul 1, 2024
1 parent afb9781 commit 44373ef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ process.env['INPUT_WORKFLOW_DEPENDENCIES_PATH'] = './tests/data/dependencies.zip
exec('node index.js', (error, stdout, stderr) => {
if (error) {
console.error('Error:', error);
return;
process.exit(1);
}
if (stderr) {
console.error('stderr:', stderr);
return;
process.exit(1);
}
console.log('stdout:', stdout);
process.exit(0);
});

0 comments on commit 44373ef

Please sign in to comment.