From 0bdee9136bd5a464b7f0093dd9966bde6602596e Mon Sep 17 00:00:00 2001 From: Joe Genereux Date: Thu, 4 Oct 2018 16:26:28 -0600 Subject: [PATCH] adds npm audit to pipeline and failure to npm audit --- vcx/wrappers/node/ci/test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vcx/wrappers/node/ci/test.sh b/vcx/wrappers/node/ci/test.sh index cce06fa4..85740fc8 100755 --- a/vcx/wrappers/node/ci/test.sh +++ b/vcx/wrappers/node/ci/test.sh @@ -1,6 +1,8 @@ #!/bin/bash +set -e cd vcx/wrappers/node/ npm i +npm audit npm run lint npm run compile npm test