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:
Ross Brodbeck
2020-07-20 07:07:15 -04:00
committed by GitHub
parent f15acf4c48
commit d34e81e77f
9 changed files with 4227 additions and 286 deletions

View File

@ -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))