aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/scripts/npm-audit
blob: 00a6876ffc15ff66f9d1f095f4f6c4476c349225 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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