We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 54982f2 + 5a8088b commit 6173c7fCopy full SHA for 6173c7f
test-build.sh
@@ -2,7 +2,7 @@
2
#
3
# Run a test build for all images.
4
5
-set -uo pipefail
+set -euo pipefail
6
7
. functions.sh
8
test-image.sh
@@ -7,12 +7,12 @@ echo "Test for node succeeded."
if ! npm --version >/dev/null; then
9
echo "Test for npm failed!"
10
- exit 2
+ exit 1
11
fi
12
echo "Test for npm succeeded."
13
14
if ! yarn --version >/dev/null; then
15
echo "Test of yarn failed!"
16
- exit 3
17
18
echo "Test for yarn succeeded."
0 commit comments