Add unit test for tools: nightly

This commit is contained in:
Michael B. Gale
2026-02-15 17:13:52 +00:00
parent 817d568ca0
commit 466a4f00eb
2 changed files with 65 additions and 2 deletions
+4 -2
View File
@@ -55,7 +55,9 @@ function getCodeQLBundleExtension(
}
}
function getCodeQLBundleName(compressionMethod: tar.CompressionMethod): string {
export function getCodeQLBundleName(
compressionMethod: tar.CompressionMethod,
): string {
const extension = getCodeQLBundleExtension(compressionMethod);
let platform: string;
@@ -196,7 +198,7 @@ export function convertToSemVer(version: string, logger: Logger): string {
return s;
}
type CodeQLToolsSource =
export type CodeQLToolsSource =
| {
codeqlTarPath: string;
compressionMethod: tar.CompressionMethod;