diff --git a/src/index.ts b/src/index.ts index 4249512..ef6c2be 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,9 +3,7 @@ import program from "./parser/payload"; import { run } from "./run"; run(program) - .then((result) => { - core?.setOutput("result", result); - }) + .then((result) => core?.setOutput("result", result)) .catch((e) => { console.error("Failed to run user-activity-watcher:", e); core?.setFailed(e.toString());