2021-09-18 21:21:22 +08:00
|
|
|
import * as core from "@actions/core"
|
2021-09-18 21:27:06 +08:00
|
|
|
import { isCI } from "../env/isci"
|
2021-09-18 21:21:22 +08:00
|
|
|
|
|
|
|
export function error(err: string | Error) {
|
2021-09-18 21:27:06 +08:00
|
|
|
return isCI() ? core.error(err) : console.log(`\x1b[31m${err}\x1b[0m`)
|
2021-09-18 21:21:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function success(msg: string) {
|
2021-09-18 21:27:06 +08:00
|
|
|
return isCI() ? core.info(msg) : console.log(`\x1b[32m${msg}\x1b[0m`)
|
2021-09-18 21:21:22 +08:00
|
|
|
}
|