setup-cpp/src/utils/io/io.ts

14 lines
448 B
TypeScript
Raw Normal View History

2021-09-18 21:21:22 +08:00
import * as core from "@actions/core"
import { isGitHubCI } from "../env/isci"
2021-09-18 21:21:22 +08:00
export function error(err: string | Error) {
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) {
return isGitHubCI() ? core.info(msg) : console.log(`\x1b[32m${msg}\x1b[0m`)
2021-09-18 21:21:22 +08:00
}
export function warning(msg: string) {
return isGitHubCI() ? core.warning(msg) : console.log(`\x1b[33m${msg}\x1b[0m`)
}