We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 542c049 commit 1f40c58Copy full SHA for 1f40c58
.github/workflows/development.yml
@@ -199,6 +199,10 @@ jobs:
199
local T="$(mktemp)"
200
trap 'rm -f '"$T" RETURN
201
>"$T" 2>&1 eval "$@" || rv=$?
202
+ if [ $rv -eq 0 ] && case "$(tail -1 $T)" in '<p>Hello, World!</p>') false ;; *) true ;; esac ; then
203
+ >&2 echo 'failed! got "'"$(tail -1 $T)"'" !'
204
+ rv=1
205
+ fi
206
printf '`%s` (returned code: ' "$@"
207
printf '%s)\n```\n' "$rv"
208
cat "$T"
0 commit comments