diff --git a/src/merge/constants.ts b/src/merge/constants.ts index 7869ab1..1a24021 100644 --- a/src/merge/constants.ts +++ b/src/merge/constants.ts @@ -6,5 +6,5 @@ export enum Inputs { RetentionDays = 'retention-days', CompressionLevel = 'compression-level', DeleteMerged = 'delete-merged', - IncludeHiddenFiles = 'include-hidden-files', + IncludeHiddenFiles = 'include-hidden-files' } diff --git a/src/merge/input-helper.ts b/src/merge/input-helper.ts index cc26a96..0c36735 100644 --- a/src/merge/input-helper.ts +++ b/src/merge/input-helper.ts @@ -19,7 +19,7 @@ export function getInputs(): MergeInputs { deleteMerged, retentionDays: 0, compressionLevel: 6, - includeHiddenFiles, + includeHiddenFiles } as MergeInputs const retentionDaysStr = core.getInput(Inputs.RetentionDays) diff --git a/src/merge/merge-artifacts.ts b/src/merge/merge-artifacts.ts index 8562e86..dc39ff7 100644 --- a/src/merge/merge-artifacts.ts +++ b/src/merge/merge-artifacts.ts @@ -62,7 +62,10 @@ export async function run(): Promise { options.compressionLevel = inputs.compressionLevel } - const searchResult = await findFilesToUpload(tmpDir, inputs.includeHiddenFiles) + const searchResult = await findFilesToUpload( + tmpDir, + inputs.includeHiddenFiles + ) await uploadArtifact( inputs.name, diff --git a/src/shared/search.ts b/src/shared/search.ts index 465507f..c468f14 100644 --- a/src/shared/search.ts +++ b/src/shared/search.ts @@ -81,7 +81,7 @@ function getMultiPathLCA(searchPaths: string[]): string { export async function findFilesToUpload( searchPath: string, - includeHiddenFiles?: boolean, + includeHiddenFiles?: boolean ): Promise { const searchResults: string[] = [] const globber = await glob.create( diff --git a/src/upload/constants.ts b/src/upload/constants.ts index 2c281de..8407bc1 100644 --- a/src/upload/constants.ts +++ b/src/upload/constants.ts @@ -6,7 +6,7 @@ export enum Inputs { RetentionDays = 'retention-days', CompressionLevel = 'compression-level', Overwrite = 'overwrite', - IncludeHiddenFiles = 'include-hidden-files', + IncludeHiddenFiles = 'include-hidden-files' } export enum NoFileOptions { diff --git a/src/upload/input-helper.ts b/src/upload/input-helper.ts index f1912f1..a867a21 100644 --- a/src/upload/input-helper.ts +++ b/src/upload/input-helper.ts @@ -29,7 +29,7 @@ export function getInputs(): UploadInputs { searchPath: path, ifNoFilesFound: noFileBehavior, overwrite: overwrite, - includeHiddenFiles: includeHiddenFiles, + includeHiddenFiles: includeHiddenFiles } as UploadInputs const retentionDaysStr = core.getInput(Inputs.RetentionDays) diff --git a/src/upload/upload-artifact.ts b/src/upload/upload-artifact.ts index c6368bf..6c06d53 100644 --- a/src/upload/upload-artifact.ts +++ b/src/upload/upload-artifact.ts @@ -24,7 +24,10 @@ async function deleteArtifactIfExists(artifactName: string): Promise { export async function run(): Promise { const inputs = getInputs() - const searchResult = await findFilesToUpload(inputs.searchPath, inputs.includeHiddenFiles) + const searchResult = await findFilesToUpload( + inputs.searchPath, + inputs.includeHiddenFiles + ) if (searchResult.filesToUpload.length === 0) { // No files were found, different use cases warrant different types of behavior if nothing is found switch (inputs.ifNoFilesFound) {