From ab789e9b5b3c5911ebe5c8d8fb27cdf9cf889548 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Thu, 13 Oct 2022 15:25:42 +0200 Subject: [PATCH] testing: add debug line --- dist/setup/index.js | 1 + src/installer.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/setup/index.js b/dist/setup/index.js index 8f6d31a9..53dfb0e9 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -73224,6 +73224,7 @@ function getNode(versionSpec, stable, checkLatest, auth, arch = os.arch()) { } } // check cache + core.debug('check toolcache'); let toolPath; toolPath = tc.find('node', versionSpec, osArch); // If not found in cache, download diff --git a/src/installer.ts b/src/installer.ts index 53f4e633..c7e700b8 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -81,6 +81,7 @@ export async function getNode( } // check cache + core.debug('check toolcache'); let toolPath: string; toolPath = tc.find('node', versionSpec, osArch);