mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
13 lines
178 B
Plaintext
13 lines
178 B
Plaintext
|
#!/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
|