mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-06 07:19:51 +00:00
add await in wait() call (#29)
This commit is contained in:
committed by
Bryan MacFarlane
parent
dd85ee5251
commit
8d42c2baab
@ -7,7 +7,7 @@ async function run() {
|
||||
console.log(`Waiting ${ms} milliseconds ...`)
|
||||
|
||||
core.debug((new Date()).toTimeString())
|
||||
wait(parseInt(ms));
|
||||
await wait(parseInt(ms));
|
||||
core.debug((new Date()).toTimeString())
|
||||
|
||||
core.setOutput('time', new Date().toTimeString());
|
||||
|
Reference in New Issue
Block a user