From 57bbad56675383f6360bb352d8b3458a655288f8 Mon Sep 17 00:00:00 2001 From: Maksim Zdobnikau Date: Wed, 9 Oct 2024 18:18:45 +0200 Subject: [PATCH] Add log for test --- lib/cache-utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cache-utils.js b/lib/cache-utils.js index 383a999..7ed05c6 100644 --- a/lib/cache-utils.js +++ b/lib/cache-utils.js @@ -71,6 +71,7 @@ export async function getCacheKey(scarbLockfilePath) { async function getScarbLockfilePath(scarbLockfilePath) { const lockfilePath = scarbLockfilePath || "Scarb.lock"; + core.info(`Using Scarb.lock file: ${lockfilePath}`); await fs.access(lockfilePath).catch((_) => { throw new Error("failed to find Scarb.lock");