From 3895d2636c35522c08a6739cd2e596b562a38f55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Kvasni=C4=8Dka?= Date: Thu, 13 Apr 2023 16:24:45 +0400 Subject: [PATCH] use DEBUG flag instead of CI --- lib/debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/debug.js b/lib/debug.js index 21edf1ca..8e2b6909 100644 --- a/lib/debug.js +++ b/lib/debug.js @@ -1,5 +1,5 @@ function debug (title, content) { - if (process.env.CI === 'true') { + if (process.env.DEBUG === 'true') { console.log(`::group::${title}`) console.log(JSON.stringify(content, null, 3)) console.log('::endgroup::')