Explicitly exit the process to not wait for hanging promises

See https://github.com/actions/setup-node/issues/878
This commit is contained in:
Raphaël 2023-11-27 16:06:28 +01:00
parent 5ef044f9d0
commit 7d1c5630d8
No known key found for this signature in database
GPG key ID: CC3BA0D2CCF9F24E
7 changed files with 35 additions and 0 deletions

View file

@ -77,6 +77,10 @@ export async function run() {
} catch (err) {
core.setFailed((err as Error).message);
}
// Explicit process.exit() to not wait for hanging promises,
// see https://github.com/actions/setup-node/issues/878
process.exit();
}
function resolveVersionInput(): string {