aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/scripts/npm-audit
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-06-06 23:56:27 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-06-07 02:10:14 +0800
commitea142a4dd65c45694f663885d509aae147430f97 (patch)
tree9cb4a3c716a64eef740714e6d8da21886bd883ae /.circleci/scripts/npm-audit
parent569a8e59459c0a716b1528616925f39f7645da1e (diff)
downloadtangerine-wallet-browser-ea142a4dd65c45694f663885d509aae147430f97.tar
tangerine-wallet-browser-ea142a4dd65c45694f663885d509aae147430f97.tar.gz
tangerine-wallet-browser-ea142a4dd65c45694f663885d509aae147430f97.tar.bz2
tangerine-wallet-browser-ea142a4dd65c45694f663885d509aae147430f97.tar.lz
tangerine-wallet-browser-ea142a4dd65c45694f663885d509aae147430f97.tar.xz
tangerine-wallet-browser-ea142a4dd65c45694f663885d509aae147430f97.tar.zst
tangerine-wallet-browser-ea142a4dd65c45694f663885d509aae147430f97.zip
ci: Enable npm audit check
Diffstat (limited to '.circleci/scripts/npm-audit')
-rwxr-xr-x.circleci/scripts/npm-audit12
1 files changed, 12 insertions, 0 deletions
diff --git a/.circleci/scripts/npm-audit b/.circleci/scripts/npm-audit
new file mode 100755
index 000000000..00a6876ff
--- /dev/null
+++ b/.circleci/scripts/npm-audit
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+set -e
+set -u
+set -o pipefail
+
+if ! npm audit
+then
+ ! npm audit --json > audit.json
+ printf '%s\n' ''
+ node .circleci/scripts/npm-audit-check.js
+fi