File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
.github/actions/code-pushup Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1616 env :
1717 TSX_TSCONFIG_PATH : .github/actions/code-pushup/tsconfig.json
1818 GH_TOKEN : ${{ inputs.token }}
19- CP_VERBOSE : true
Original file line number Diff line number Diff line change @@ -10,7 +10,11 @@ import {
1010 type SourceFileIssue ,
1111 runInCI ,
1212} from '@code-pushup/ci' ;
13- import { CODE_PUSHUP_UNICODE_LOGO , stringifyError } from '@code-pushup/utils' ;
13+ import {
14+ CODE_PUSHUP_UNICODE_LOGO ,
15+ logger ,
16+ stringifyError ,
17+ } from '@code-pushup/utils' ;
1418
1519type GitHubRefs = {
1620 head : GitBranch ;
@@ -126,6 +130,10 @@ function createGitHubApiClient(): ProviderAPIClient {
126130
127131async function run ( ) : Promise < void > {
128132 try {
133+ if ( core . isDebug ( ) ) {
134+ logger . setVerbose ( true ) ;
135+ }
136+
129137 const options : Options = {
130138 bin : 'npx nx code-pushup --nx-bail --' ,
131139 } ;
You can’t perform that action at this time.
0 commit comments