We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95b402c commit 2b6a560Copy full SHA for 2b6a560
src/test/cache-github-live.test.ts
@@ -13,7 +13,11 @@ import {SimpleLogger} from '../logging/simple-logger.js';
13
14
test('env vars look like we expect', () => {
15
for (const [key, val] of Object.entries(process.env)) {
16
- if (key.startsWith('GITHUB_')) {
+ if (
17
+ key.startsWith('GITHUB_') ||
18
+ key.startsWith('ACTIONS_') ||
19
+ key.startsWith('WIREIT_')
20
+ ) {
21
console.log(`${key}=${val}`);
22
}
23
0 commit comments