Skip to content

Commit

Permalink
Merge pull request #37 from microauth/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
rockchalkwushock authored Apr 14, 2018
2 parents e7dbe02 + dc5aa0f commit 70bf8d4
Show file tree
Hide file tree
Showing 5 changed files with 1,459 additions and 580 deletions.
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ jobs:
- attach_workspace:
at: ~/microauth-vkontakte
- run: yarn start validate
check_dependencies:
docker:
- image: 'circleci/node:latest'
working_directory: ~/microauth-vkontakte
steps:
- checkout
- attach_workspace:
at: ~/microauth-vkontakte
- run: yarn start validate.dependencies
test_node_7:
docker:
- image: 'circleci/node:7'
Expand Down Expand Up @@ -78,18 +87,24 @@ workflows:
- validate_code:
requires:
- checkout_code
- check_dependencies:
requires:
- checkout_code
- test_node_7:
requires:
- checkout_code
- validate_code
- check_dependencies
- test_node_8:
requires:
- checkout_code
- validate_code
- check_dependencies
- test_latest_and_report:
requires:
- checkout_code
- validate_code
- check_dependencies
- release:
requires:
- test_node_7
Expand Down
4 changes: 4 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.10.2
ignore: {}
patch: {}
1 change: 1 addition & 0 deletions package-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module.exports = {
},
validate: {
default: series.nps('lint.fix'),
dependencies: 'snyk test',
withCoverage: series.nps('validate', 'test.coverage')
}
}
Expand Down
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,24 +67,25 @@
},
"dependencies": {
"micro-redirect": "^1.0.0",
"request": "^2.83.0",
"request": "^2.85.0",
"request-promise": "^4.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"all-contributors-cli": "^4.11.0",
"all-contributors-cli": "^4.11.1",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.18.2",
"eslint": "^4.19.1",
"eslint-config-equimper": "^2.2.2",
"eslint-config-prettier": "^2.9.0",
"husky": "^0.15.0-rc.8",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"nps": "^5.8.1",
"husky": "^1.0.0-rc.1",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"nps": "^5.9.0",
"nps-utils": "^1.5.0",
"prettier": "^1.11.1",
"semantic-release": "^12.4.1"
"prettier": "^1.12.0",
"semantic-release": "^15.1.7",
"snyk": "^1.71.0"
}
}
Loading

0 comments on commit 70bf8d4

Please sign in to comment.