Merge pull request #979 from sharetribe/remove-audit

Temporarily remove audit from CircleCI
This commit is contained in:
Jenni Nurmi 2018-12-17 13:54:47 +02:00 committed by GitHub
commit af85a1f7d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 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

@ -14,6 +14,8 @@ way to update this template, but currently, we follow a pattern:
## Upcoming version 2018-XX-XX
- [fix] Temporarily remove audit step from CI because of the Node Security Platform shutting down.
[#979](https://github.com/sharetribe/flex-template-web/pull/979)
- [add] Add Stripe support for new countries: Canada, New Zealand, Switzerland, Norway, and Hong
Kong. Also add more required fields for US and Australia.
- StripeBankAccountTokenInputField component and PayoutDetailsForm have some changes

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,