Skip to content

Commit 2b6a560

Browse files
committed
Log more env
1 parent 95b402c commit 2b6a560

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/test/cache-github-live.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ import {SimpleLogger} from '../logging/simple-logger.js';
1313

1414
test('env vars look like we expect', () => {
1515
for (const [key, val] of Object.entries(process.env)) {
16-
if (key.startsWith('GITHUB_')) {
16+
if (
17+
key.startsWith('GITHUB_') ||
18+
key.startsWith('ACTIONS_') ||
19+
key.startsWith('WIREIT_')
20+
) {
1721
console.log(`${key}=${val}`);
1822
}
1923
}

0 commit comments

Comments
 (0)