Trym Lund Flogard a48c618622 test output link
2021-06-05 13:13:36 +02:00

17 lines
292 B
TypeScript

export enum NoFileOption {
/**
* Default. Output a warning but do not fail the action
*/
warn = 'warn',
/**
* Fail the action with an error message
*/
error = 'error',
/**
* Do not output any warnings or errors, the action does not fail
*/
ignore = 'ignore'
}