We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
console.error
1 parent 7666317 commit 60fa503Copy full SHA for 60fa503
1 file changed
.github/actions/find/bootstrap.js
@@ -41,7 +41,7 @@ await (async () => {
41
quiet: true,
42
})
43
} catch (error) {
44
- console.error(`npm ci failed: ${error}`)
+ core.setFailed(`npm ci failed: ${error}`)
45
process.exit(1)
46
}
47
} finally {
@@ -52,7 +52,7 @@ await (async () => {
52
53
54
55
- console.error(`npm run build (TypeScript compilation) failed: ${error}`)
+ core.setFailed(`npm run build (TypeScript compilation) failed: ${error}`)
56
57
58
// Run the main script.
0 commit comments