File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1515 runs-on : ubuntu-latest
1616 defaults :
1717 run :
18- shell : echo " {0}"
18+ shell : bash -e {0} 2> >(tee -a ${{ github.workspace }}/stderr.log >&2)
1919 steps :
2020 - uses : actions/checkout@v4
2121 with :
3232
3333 - run : npm ci
3434 - run : npm run check
35-
3635 - run : npm run format:core:check
3736 # # TODO: content formatting checks
3837 - run : npm run build
6362 # cut -d' ' -f2-) # remove timestamp
6463 # sed -n '/\[.*error.*\]/I,$p') # select lines from '[...error...]' or 'npm err' (case-insensitive) to EOF
6564
66- cat stderr.log
65+ echo $SHELLOPTS
66+
67+ ls ${{ github.workspace }}
68+ cat ${{ github.workspace }}/stderr.log
6769
6870 if [ -s "stderr.log" ]; then
6971 echo ${{ secrets.GITHUB_TOKEN }} | gh auth login --with-token
You can’t perform that action at this time.
0 commit comments