2021-09-18 21:21:22 +08:00
|
|
|
import * as core from "@actions/core"
|
2022-01-18 06:23:33 +08:00
|
|
|
import { isGitHubCI } from "../env/isci"
|
2021-09-18 21:21:22 +08:00
|
|
|
|
|
|
|
export function error(err: string | Error) {
|
2022-01-18 06:23:33 +08:00
|
|
|
return isGitHubCI() ? core.error(err) : console.log(`\x1b[31m${err}\x1b[0m`)
|
2021-09-18 21:21:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function success(msg: string) {
|
2022-01-18 06:23:33 +08:00
|
|
|
return isGitHubCI() ? core.info(msg) : console.log(`\x1b[32m${msg}\x1b[0m`)
|
2021-09-18 21:21:22 +08:00
|
|
|
}
|
2022-01-30 07:13:52 +08:00
|
|
|
|
|
|
|
export function warning(msg: string) {
|
|
|
|
return isGitHubCI() ? core.warning(msg) : console.log(`\x1b[33m${msg}\x1b[0m`)
|
2022-01-30 07:15:35 +08:00
|
|
|
}
|
2022-04-16 15:30:53 +08:00
|
|
|
|
|
|
|
export function info(msg: string) {
|
|
|
|
return isGitHubCI() ? core.info(msg) : console.log(msg)
|
|
|
|
}
|