1
0
Fork 0
toolkit/packages/core/src/core.ts

236 lines
6.3 KiB
TypeScript
Raw Normal View History

import {issue, issueCommand} from './command'
import {issueCommand as issueFileCommand} from './file-command'
import {toCommandValue} from './utils'
2019-05-17 03:36:45 +00:00
import * as os from 'os'
import * as path from 'path'
2019-05-21 16:00:23 +00:00
/**
* Interface for getInput options
*/
export interface InputOptions {
/** Optional. Whether the input is required. If required and not present, will throw. Defaults to false */
required?: boolean
}
/**
* The code to exit an action
*/
export enum ExitCode {
/**
* A code indicating that the action was successful
*/
Success = 0,
/**
* A code indicating that the action was a failure
*/
2019-08-06 13:12:30 +00:00
Failure = 1
}
2019-05-17 14:23:01 +00:00
//-----------------------------------------------------------------------
// Variables
//-----------------------------------------------------------------------
2019-05-17 03:36:45 +00:00
/**
2019-10-01 21:13:05 +00:00
* Sets env variable for this action and future actions in the job
2019-05-17 03:36:45 +00:00
* @param name the name of the variable to set
* @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify
2019-05-17 03:36:45 +00:00
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export function exportVariable(name: string, val: any): void {
const convertedVal = toCommandValue(val)
process.env[name] = convertedVal
const filePath = process.env['GITHUB_ENV'] || ''
if (filePath) {
const delimiter = '_GitHubActionsFileCommandDelimeter_'
const commandValue = `${name}<<${delimiter}${os.EOL}${convertedVal}${os.EOL}${delimiter}`
issueFileCommand('ENV', commandValue)
} else {
issueCommand('set-env', {name}, convertedVal)
}
2019-05-17 03:36:45 +00:00
}
/**
2019-10-01 21:13:05 +00:00
* Registers a secret which will get masked from logs
* @param secret value of the secret
2019-05-17 03:36:45 +00:00
*/
2019-10-01 21:13:05 +00:00
export function setSecret(secret: string): void {
issueCommand('add-mask', {}, secret)
2019-05-20 23:17:56 +00:00
}
2019-05-17 03:36:45 +00:00
/**
* Prepends inputPath to the PATH (for this action and future actions)
* @param inputPath
*/
export function addPath(inputPath: string): void {
const filePath = process.env['GITHUB_PATH'] || ''
if (filePath) {
issueFileCommand('PATH', inputPath)
} else {
issueCommand('add-path', {}, inputPath)
}
process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`
}
2019-05-17 14:23:01 +00:00
/**
* Gets the value of an input. The value is also trimmed.
2019-05-20 23:17:56 +00:00
*
2019-05-17 14:23:01 +00:00
* @param name name of the input to get
* @param options optional. See InputOptions.
* @returns string
*/
2019-05-21 16:03:13 +00:00
export function getInput(name: string, options?: InputOptions): string {
2019-05-21 14:51:22 +00:00
const val: string =
process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || ''
2019-05-20 23:17:56 +00:00
if (options && options.required && !val) {
throw new Error(`Input required and not supplied: ${name}`)
}
2019-05-17 14:23:01 +00:00
2019-05-20 23:17:56 +00:00
return val.trim()
2019-05-17 14:23:01 +00:00
}
2019-06-24 20:14:47 +00:00
/**
* Sets the value of an output.
*
* @param name name of the output to set
* @param value value to store. Non-string values will be converted to a string via JSON.stringify
2019-06-24 20:14:47 +00:00
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export function setOutput(name: string, value: any): void {
issueCommand('set-output', {name}, value)
2019-06-24 20:14:47 +00:00
}
/**
* Enables or disables the echoing of commands into stdout for the rest of the step.
* Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set.
*
*/
export function setCommandEcho(enabled: boolean): void {
issue('echo', enabled ? 'on' : 'off')
}
2019-05-17 03:36:45 +00:00
//-----------------------------------------------------------------------
// Results
//-----------------------------------------------------------------------
/**
2019-05-20 23:17:56 +00:00
* Sets the action status to failed.
2019-05-17 03:36:45 +00:00
* When the action exits it will be with an exit code of 1
* @param message add error issue message
*/
export function setFailed(message: string | Error): void {
2019-05-21 16:00:23 +00:00
process.exitCode = ExitCode.Failure
2019-05-20 23:17:56 +00:00
error(message)
2019-05-17 03:36:45 +00:00
}
//-----------------------------------------------------------------------
// Logging Commands
//-----------------------------------------------------------------------
/**
* Gets whether Actions Step Debug is on or not
*/
export function isDebug(): boolean {
return process.env['RUNNER_DEBUG'] === '1'
}
2019-05-17 03:36:45 +00:00
/**
* Writes debug message to user log
* @param message debug message
*/
2019-05-21 21:08:25 +00:00
export function debug(message: string): void {
2019-05-21 19:26:44 +00:00
issueCommand('debug', {}, message)
2019-05-17 03:36:45 +00:00
}
/**
* Adds an error issue
* @param message error issue message. Errors will be converted to string via toString()
2019-05-17 03:36:45 +00:00
*/
export function error(message: string | Error): void {
issue('error', message instanceof Error ? message.toString() : message)
2019-05-17 03:36:45 +00:00
}
/**
* Adds an warning issue
* @param message warning issue message. Errors will be converted to string via toString()
2019-05-17 03:36:45 +00:00
*/
export function warning(message: string | Error): void {
issue('warning', message instanceof Error ? message.toString() : message)
2019-05-17 03:36:45 +00:00
}
2019-08-29 02:35:27 +00:00
/**
* Writes info to log with console.log.
* @param message info message
*/
export function info(message: string): void {
process.stdout.write(message + os.EOL)
}
2019-08-29 02:35:27 +00:00
/**
* Begin an output group.
*
* Output until the next `groupEnd` will be foldable in this group
*
* @param name The name of the output group
*/
export function startGroup(name: string): void {
issue('group', name)
}
/**
* End an output group.
*/
export function endGroup(): void {
issue('endgroup')
}
/**
* Wrap an asynchronous function call in a group.
*
* Returns the same type as the function itself.
*
* @param name The name of the group
* @param fn The function to wrap in the group
*/
export async function group<T>(name: string, fn: () => Promise<T>): Promise<T> {
startGroup(name)
let result: T
try {
result = await fn()
} finally {
endGroup()
}
2019-08-29 02:35:27 +00:00
return result
}
//-----------------------------------------------------------------------
// Wrapper action state
//-----------------------------------------------------------------------
/**
* Saves state for current action, the state can only be retrieved by this action's post job execution.
*
* @param name name of the state to store
* @param value value to store. Non-string values will be converted to a string via JSON.stringify
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export function saveState(name: string, value: any): void {
2019-09-20 02:18:51 +00:00
issueCommand('save-state', {name}, value)
}
/**
* Gets the value of an state set by this action's main execution.
*
* @param name name of the state to get
* @returns string
*/
export function getState(name: string): string {
return process.env[`STATE_${name}`] || ''
}