Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f36ce57

Browse files
committedFeb 26, 2025··
chore: improve logging for debug
1 parent 799c282 commit f36ce57

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed
 

‎.github/workflows/run-e2e-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
env:
1818
NODE_ENV: dev
1919
PR_NUMBER: ${{ inputs.prNumber }}
20+
RUNNER_DEBUG: ${{ runner.debug }}
2021
permissions:
2122
id-token: write # needed to interact with GitHub's OIDC Token endpoint.
2223
contents: read

‎packages/testing/src/TestStack.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ const testConsole = new Console({
1717
stderr: process.stderr,
1818
});
1919

20+
testConsole.log(process.env.RUNNER_DEBUG);
21+
2022
/**
2123
* Test stack that can be deployed to the selected environment.
2224
*/

0 commit comments

Comments
 (0)
Please sign in to comment.