()
| 14 | const fs = require("fs"); |
| 15 | |
| 16 | function isDebugModeEnabled() { |
| 17 | const toBool = value => { |
| 18 | const normalized = String(value || "").toLowerCase(); |
| 19 | return normalized === "1" || normalized === "true"; |
| 20 | }; |
| 21 | return toBool(process.env.RUNNER_DEBUG) || toBool(process.env.ACTIONS_STEP_DEBUG); |
| 22 | } |
| 23 | |
| 24 | function listTmpGhAwFiles(tmpDir, maxDepth, maxFiles) { |
| 25 | if (!fs.existsSync(tmpDir)) { |