Fixes up issues with the template (#36)

* #27 remove console.log
* #16 change author to empty
* #30 maintain this repo 😄 
* #8 jest update for eslint
* update dependencies
* #22 generate source maps
* #21 use prepare instead of package
* add `npm run all` to run everything
This commit is contained in:
Ross Brodbeck
2020-07-17 08:34:34 -04:00
committed by GitHub
parent 89ae381fbe
commit 16ddff4fe0
8 changed files with 6209 additions and 2357 deletions
+3 -3
View File
@@ -6,11 +6,11 @@ const wait = require('./wait');
async function run() {
try {
const ms = core.getInput('milliseconds');
console.log(`Waiting ${ms} milliseconds ...`)
core.info(`Waiting ${ms} milliseconds ...`)
core.debug((new Date()).toTimeString())
core.debug((new Date()).toTimeString()) // debug is only output if you set the secret `ACTIONS_RUNNER_DEBUG` to true
await wait(parseInt(ms));
core.debug((new Date()).toTimeString())
core.info((new Date()).toTimeString())
core.setOutput('time', new Date().toTimeString());
}