File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 25
25
- name : Setup matrix combinations
26
26
id : setup-matrix-combinations
27
27
run : |
28
+ echo ${{ steps.changedfiles.outputs.changedFiles }}
28
29
dirs=()
29
- for changed_file in ${{ steps.changedfiles.outputs.changedFiles }}; do
30
+ for changed_file in ${{ fromJson( steps.changedfiles.outputs.changedFiles) }}; do
30
31
dir="$(echo $changed_file | cut -d/ -f1)"
31
32
if [[ ! " ${dirs[@]} " =~ " ${dir} " ]]; then
32
33
MATRIX_PARAMS_COMBINATIONS=$MATRIX_PARAMS_COMBINATIONS'{"tutorial": "'$dir'"},'
63
64
run : npm install
64
65
65
66
- name : run buildRun.sh --user ${{ github.actor }} --branch ${{ github.event.pull_request_target.head.ref }} --checkSyntax
66
- run : sh buildRun.sh --user ${{ github.actor }} --branch ${{ github.event.pull_request_target.head.ref }} --checkSyntax -p ${{ matrix.tutorial }} -e test_console
67
+ run : |
68
+ echo ${{ matrix.tutorial }}
69
+ sh buildRun.sh --user ${{ github.actor }} --branch ${{ github.event.pull_request_target.head.ref }} --checkSyntax -p ${{ matrix.tutorial }} -e test_console
67
70
68
71
- name : Check error file existence
69
72
id : check_files
You can’t perform that action at this time.
0 commit comments