Fail CI job if process fails

This commit is contained in:
Tom Coleman 2022-08-08 10:18:47 +10:00
parent 2b9ec8af2e
commit 01d52abd48

View File

@ -103,5 +103,6 @@ if (require.main === module) {
run().catch((err) => {
console.error('Multiplexing failed');
console.error(err);
process.exit(1);
});
}