ci: harden workflows and update Node.js (#686)

This commit is contained in:
Shohei Ueda
2026-05-10 18:21:41 +09:00
committed by GitHub
parent fd1a667089
commit 64e0f66acb
14 changed files with 97 additions and 70 deletions
+2 -1
View File
@@ -5,6 +5,7 @@ import * as main from './main';
try {
await main.run();
} catch (e) {
core.setFailed(`Action failed with error ${e.message}`);
const message = e instanceof Error ? e.message : String(e);
core.setFailed(`Action failed with error ${message}`);
}
})();