From 9beac977d89bb4f9e03a91d5c4392920db9b4a95 Mon Sep 17 00:00:00 2001 From: Whymarrh Whitby Date: Thu, 6 Dec 2018 11:33:54 -0330 Subject: circleci: Disable npm audit when installing packages Auditing packages when installing here doesn't help anyone as the summary isn't visible and vulnerabilities don't produce a non-zero exit code. We will have `npm audit` as an extra CI job. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 22d14476b..1e7e8cc98 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,7 +91,7 @@ jobs: - run: name: Install npm 6 + deps via npm command: | - sudo npm install -g npm@6 && npm install --no-save + sudo npm install -g npm@6 && npm install --no-save --no-audit - persist_to_workspace: root: . paths: -- cgit v1.2.3