Format files according to Prettier rules and build

This commit is contained in:
Ivan Zosimov (Akvelon INC) 2022-02-21 16:29:32 +03:00
parent 25a133c257
commit 53f5d5ec02
7 changed files with 120128 additions and 6377 deletions

58877
dist/cache-save/index.js vendored Normal file

File diff suppressed because one or more lines are too long

6359
dist/index.js vendored

File diff suppressed because it is too large Load diff

61239
dist/setup/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -18,9 +18,7 @@ export const restoreCache = async (
const packageManagerInfo = await getPackageManagerInfo();
const platform = process.env.RUNNER_OS;
const cachePath = await getCacheDirectoryPath(
packageManagerInfo
);
const cachePath = await getCacheDirectoryPath(packageManagerInfo);
const goSumFilePath = cacheDependencyPath
? cacheDependencyPath

View file

@ -26,9 +26,7 @@ const cachePackages = async () => {
const packageManagerInfo = await getPackageManagerInfo();
const cachePath = await getCacheDirectoryPath(
packageManagerInfo,
);
const cachePath = await getCacheDirectoryPath(packageManagerInfo);
if (!fs.existsSync(cachePath)) {
throw new Error(

View file

@ -7,8 +7,8 @@ export interface PackageManagerInfo {
}
export const defaultPackageManager: PackageManagerInfo = {
goSumFilePattern: 'go.sum',
getCacheFolderCommand: 'go env GOMODCACHE',
goSumFilePattern: 'go.sum',
getCacheFolderCommand: 'go env GOMODCACHE'
};
export const getCommandOutput = async (toolCommand: string) => {
@ -29,13 +29,11 @@ export const getCommandOutput = async (toolCommand: string) => {
};
export const getPackageManagerInfo = async () => {
return defaultPackageManager;
};
export const getCacheDirectoryPath = async (
packageManagerInfo: PackageManagerInfo,
packageManagerInfo: PackageManagerInfo
) => {
const stdout = await getCommandOutput(
packageManagerInfo.getCacheFolderCommand