mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-08 08:19:53 +00:00
Fix a bunch of small issues with the template (#67)
* Fixup dependencies and some other things * add dependabot * Update to separate run steps
This commit is contained in:
@ -4,7 +4,7 @@ import {wait} from './wait'
|
||||
async function run(): Promise<void> {
|
||||
try {
|
||||
const ms: string = core.getInput('milliseconds')
|
||||
core.debug(`Waiting ${ms} milliseconds ...`)
|
||||
core.debug(`Waiting ${ms} milliseconds ...`) // debug is only output if you set the secret `ACTIONS_RUNNER_DEBUG` to true
|
||||
|
||||
core.debug(new Date().toTimeString())
|
||||
await wait(parseInt(ms, 10))
|
||||
|
Reference in New Issue
Block a user