function runCmd()

in action/src/index.ts [10:17]


function runCmd(cmd: string) {
  try {
    console.log(`RUNNING: "${cmd}"`)
    childProcess.execSync(cmd);
  } catch (error) {
    core.setFailed(error.message);
  }
}