We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6746bef commit 8736092Copy full SHA for 8736092
1 file changed
.github/workflows/ci.yml
@@ -30,6 +30,8 @@ jobs:
30
run: |
31
set -o pipefail
32
node --test dist/**/*.test.js > ci-test.log 2>&1 || {
33
+ echo "---- failing markers (not ok / ERR / Error) ----"
34
+ grep -nE "not ok|ERR_|Error \\[|failureType|exitCode" ci-test.log | tail -n 80 || true
35
echo "---- tail(ci-test.log) ----"
36
tail -n 200 ci-test.log || true
37
details=$(tail -n 60 ci-test.log | sed -e 's/%/%25/g' -e 's/\r/%0D/g' -e ':a;N;$!ba;s/\n/%0A/g')
0 commit comments