Skip to content

Commit 6efea39

Browse files
committed
debug compilation failure
1 parent e38c3db commit 6efea39

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/actions/find/bootstrap.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ function spawnPromisified(command, args, {quiet = false, ...options} = {}) {
1111
const proc = spawn(command, args, options)
1212
proc.stdout.setEncoding('utf8')
1313
proc.stdout.on('data', data => {
14-
if (!quiet) {
15-
console.log(data)
16-
}
14+
// if (!quiet) {
15+
console.log('data: ', data)
16+
// }
1717
})
1818
proc.stderr.setEncoding('utf8')
1919
proc.stderr.on('data', data => {
@@ -57,6 +57,7 @@ await (async () => {
5757
quiet: true,
5858
})
5959
} catch (error) {
60+
console.log('error in build catch: ', error)
6061
core.setFailed(`npm run build (TypeScript compilation) failed: ${error}`)
6162
process.exit(1)
6263
}

0 commit comments

Comments
 (0)