mirror of
https://github.com/actions/typescript-action.git
synced 2025-12-14 05:56:57 +00:00
prod dependencies
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
name: 'Your name here'
|
||||
name: 'james'
|
||||
description: 'Provide a description here'
|
||||
author: 'Your name or organization here'
|
||||
inputs:
|
||||
|
||||
1
dist/index.js
generated
vendored
1
dist/index.js
generated
vendored
@@ -42,6 +42,7 @@ function run() {
|
||||
try {
|
||||
const ms = 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());
|
||||
yield (0, wait_1.wait)(parseInt(ms, 10));
|
||||
core.debug(new Date().toTimeString());
|
||||
|
||||
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user