mirror of
https://github.com/actions/setup-node.git
synced 2024-11-26 19:39:25 +08:00
72 lines
2.2 KiB
TypeScript
72 lines
2.2 KiB
TypeScript
import * as core from '@actions/core';
|
|
import * as cache from '@actions/cache';
|
|
|
|
import {State} from './constants';
|
|
import {getPackageManagerInfo} from './cache-utils';
|
|
|
|
// Catch and log any unhandled exceptions. These exceptions can leak out of the uploadChunk method in
|
|
// @actions/toolkit when a failed upload closes the file descriptor causing any in-process reads to
|
|
// throw an uncaught exception. Instead of failing this action, just warn.
|
|
process.on('uncaughtException', e => {
|
|
const warningPrefix = '[warning]';
|
|
core.info(`${warningPrefix}${e.message}`);
|
|
});
|
|
|
|
// Added early exit to resolve issue with slow post action step:
|
|
export async function run(earlyExit?: boolean) {
|
|
try {
|
|
const cacheLock = core.getState(State.CachePackageManager);
|
|
|
|
if (cacheLock) {
|
|
await cachePackages(cacheLock);
|
|
|
|
if (earlyExit) {
|
|
process.exit(0);
|
|
}
|
|
} else {
|
|
core.debug(`Caching for '${cacheLock}' is not supported`);
|
|
}
|
|
} catch (error) {
|
|
core.setFailed((error as Error).message);
|
|
}
|
|
}
|
|
|
|
const cachePackages = async (packageManager: string) => {
|
|
const state = core.getState(State.CacheMatchedKey);
|
|
const primaryKey = core.getState(State.CachePrimaryKey);
|
|
const cachePaths = JSON.parse(
|
|
core.getState(State.CachePaths) || '[]'
|
|
) as string[];
|
|
|
|
const packageManagerInfo = await getPackageManagerInfo(packageManager);
|
|
if (!packageManagerInfo) {
|
|
core.debug(`Caching for '${packageManager}' is not supported`);
|
|
return;
|
|
}
|
|
|
|
if (!cachePaths.length) {
|
|
// TODO: core.getInput has a bug - it can return undefined despite its definition (tests only?)
|
|
// export declare function getInput(name: string, options?: InputOptions): string;
|
|
const cacheDependencyPath = core.getInput('cache-dependency-path') || '';
|
|
throw new Error(
|
|
`Cache folder paths are not retrieved for ${packageManager} with cache-dependency-path = ${cacheDependencyPath}`
|
|
);
|
|
}
|
|
|
|
if (primaryKey === state) {
|
|
core.info(
|
|
`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`
|
|
);
|
|
return;
|
|
}
|
|
|
|
const cacheId = await cache.saveCache(cachePaths, primaryKey);
|
|
if (cacheId == -1) {
|
|
return;
|
|
}
|
|
|
|
core.info(`Cache saved with the key: ${primaryKey}`);
|
|
};
|
|
|
|
run(true);
|