prod dependencies

This commit is contained in:
James
2023-02-03 00:48:54 +00:00
parent 44c6b5a539
commit ad0caec39c
4 changed files with 5 additions and 2 deletions

View File

@@ -6,6 +6,8 @@ async function run(): Promise<void> {
const ms: string = core.getInput('milliseconds')
core.debug(`Waiting ${ms} milliseconds ...`) // debug is only output if you set the secret `ACTIONS_STEP_DEBUG` to true
core.debug(`My own debug to make a new dist :)`) // debug is only output if you set the secret `ACTIONS_STEP_DEBUG` to true
core.debug(new Date().toTimeString())
await wait(parseInt(ms, 10))
core.debug(new Date().toTimeString())