Temporarily remove audit from CircleCI

This commit is contained in:
Jenni Nurmi 2018-12-17 13:14:27 +02:00
parent 2625b4427c
commit d66d2d55c2
2 changed files with 1 additions and 28 deletions

View file

@ -69,29 +69,6 @@ jobs:
- run:
name: Build client application
command: yarn run build
audit:
docker:
- image: circleci/node:10.14
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-{{ .Branch }}
- yarn-packages-master
- yarn-packages-
- run:
name: Install Dependencies
command: yarn install
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- node_modules/
- run:
name: Audit dependencies
command: yarn run audit
workflows:
version: 2
format_test_build_audit:
@ -99,4 +76,3 @@ workflows:
- format
- test
- build
- audit

View file

@ -62,8 +62,6 @@
"enzyme-to-json": "^3.3.4",
"inquirer": "^6.2.0",
"nodemon": "^1.17.2",
"nsp": "^3.2.1",
"nsp-preprocessor-yarn": "^1.0.1",
"prettier": "^1.15.3"
},
"scripts": {
@ -78,8 +76,7 @@
"eject": "sharetribe-scripts eject",
"start": "node server/index.js",
"dev-server": "export NODE_ENV=development PORT=4000 REACT_APP_CANONICAL_ROOT_URL=http://localhost:4000&&yarn run build&&nodemon --watch server server/index.js",
"heroku-postbuild": "yarn run build",
"audit": "nsp check --preprocessor yarn"
"heroku-postbuild": "yarn run build"
},
"prettier": {
"singleQuote": true,