Skip to content

Commit 2b06ebf

Browse files
committed
[TEST]
1 parent 0b0e0d7 commit 2b06ebf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/installer.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ export async function getNode(
9494
`Acquiring ${info.resolvedVersion} - ${info.arch} from ${info.downloadUrl}`
9595
);
9696
downloadPath = await tc.downloadTool(info.downloadUrl, undefined, auth);
97-
console.log("here bro 2");
9897
} else {
9998
core.info(
10099
'Not found in manifest. Falling back to download directly from Node'
@@ -199,7 +198,9 @@ function isLtsAlias(versionSpec: string): boolean {
199198

200199
function getManifest(auth: string | undefined): Promise<tc.IToolRelease[]> {
201200
core.debug('Getting manifest from actions/node-versions@main');
202-
return tc.getManifestFromRepo('actions', 'node-versions', auth, 'main');
201+
let res = tc.getManifestFromRepo('actions', 'node-versions', auth, 'main');
202+
console.log(res, "LOOK HERE");
203+
return res;
203204
}
204205

205206
function resolveLtsAliasFromManifest(

0 commit comments

Comments
 (0)