Skip to content

Commit 6cfba59

Browse files
committed
chore: more logs
1 parent 0ec7daf commit 6cfba59

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

dist/post_run/index.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/run/index.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/run.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,11 @@ async function runLint(binPath: string, patchPath: string): Promise<void> {
138138
}
139139

140140
if (core.getBooleanInput(`verify`, { required: true })) {
141-
const res = await execShellCommand(`${binPath} config verify`, cmdArgs)
141+
const cmdVerify = `${binPath} config verify`
142+
143+
core.info(`Running [${cmdVerify}] in [${cmdArgs.cwd || process.cwd()}] ...`)
144+
145+
const res = await execShellCommand(cmdVerify, cmdArgs)
142146
printOutput(res)
143147
}
144148

0 commit comments

Comments
 (0)