File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
.github/actions/check-codescanning-config Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 62
62
- name : Check config
63
63
working-directory : ${{ github.action_path }}
64
64
shell : bash
65
- run : ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
65
+ run : echo "$EXPECTED_CONFIG_FILE_CONTENTS"; ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
66
66
- name : Clean up
67
67
shell : bash
68
68
if : always()
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import * as assert from 'assert'
7
7
const actualConfig = loadActualConfig ( )
8
8
9
9
const rawExpectedConfig = process . argv [ 3 ] . trim ( )
10
+ core . info ( "rawExpectedConfig: " + rawExpectedConfig )
10
11
if ( ! rawExpectedConfig ) {
11
12
core . setFailed ( 'No expected configuration provided' )
12
13
} else {
You can’t perform that action at this time.
0 commit comments