mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-22 14:04:44 +00:00
Explicitly exit the process to not wait for hanging promises
See https://github.com/actions/setup-node/issues/878
This commit is contained in:
parent
5ef044f9d0
commit
7d1c5630d8
7 changed files with 35 additions and 0 deletions
3
dist/setup/index.js
vendored
3
dist/setup/index.js
vendored
|
@ -93711,6 +93711,9 @@ function run() {
|
|||
catch (err) {
|
||||
core.setFailed(err.message);
|
||||
}
|
||||
// Explicit process.exit() to not wait for hanging promises,
|
||||
// see https://github.com/actions/setup-node/issues/878
|
||||
process.exit();
|
||||
});
|
||||
}
|
||||
exports.run = run;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue