cache/src/utils/actionUtils.ts

59 lines
1.7 KiB
TypeScript
Raw Normal View History

2019-10-30 19:48:49 +01:00
import * as core from "@actions/core";
import { Outputs, RefKey, State } from "../constants";
2019-10-30 19:48:49 +01:00
export function isExactKeyMatch(key: string, cacheKey?: string): boolean {
2019-10-30 19:48:49 +01:00
return !!(
cacheKey &&
cacheKey.localeCompare(key, undefined, {
2019-10-30 19:48:49 +01:00
sensitivity: "accent"
}) === 0
);
}
export function setCacheState(state: string): void {
core.saveState(State.CacheMatchedKey, state);
2019-11-12 22:48:02 +01:00
}
export function setCacheHitOutput(isCacheHit: boolean): void {
core.setOutput(Outputs.CacheHit, isCacheHit.toString());
}
export function setOutputAndState(key: string, cacheKey?: string): void {
setCacheHitOutput(isExactKeyMatch(key, cacheKey));
// Store the matched cache key if it exists
cacheKey && setCacheState(cacheKey);
2019-10-30 19:48:49 +01:00
}
export function getCacheState(): string | undefined {
const cacheKey = core.getState(State.CacheMatchedKey);
if (cacheKey) {
core.debug(`Cache state/key: ${cacheKey}`);
return cacheKey;
}
return undefined;
2019-10-30 19:48:49 +01:00
}
export function logWarning(message: string): void {
const warningPrefix = "[warning]";
core.info(`${warningPrefix}${message}`);
}
2020-04-17 21:46:46 +02:00
// Cache token authorized for all events that are tied to a ref
// See GitHub Context https://help.github.com/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions#github-context
export function isValidEvent(): boolean {
2020-04-20 19:44:37 +02:00
return RefKey in process.env && Boolean(process.env[RefKey]);
}
2020-06-02 17:21:03 +02:00
export function getInputAsArray(
name: string,
options?: core.InputOptions
): string[] {
return core
.getInput(name, options)
.split("\n")
.map(s => s.trim())
.filter(x => x !== "");
}