Skip to content

Commit

Permalink
[Maintenance] Upgrades: node 8.9.0, circle 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
omrilotan committed Nov 8, 2017
1 parent de48bf5 commit 8ede283
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 21 deletions.
27 changes: 27 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
defaults: &defaults
working_directory: ~/app
docker:
- image: circleci/node:6.11.5
- image: circleci/node:8.9.0

version: 2
jobs:
test:
<<: *defaults
steps:
- checkout
- run:
name: npm i
command: npm i
- run:
name: npm t
command: npm t
- run:
name: lint
command: npm run lint

workflows:
version: 2
ci-cd:
jobs:
- test
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.4.0
8.9.0
19 changes: 0 additions & 19 deletions circle.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"main": "index.js",
"scripts": {
"prepublishOnly": "npm t && npm run lint",
"test": "./node_modules/mocha/bin/mocha -- tests/*.js --inspect",
"test": "./node_modules/mocha/bin/mocha tests/*.js --inspect",
"lint": "./node_modules/eslint/bin/eslint.js -c .eslintrc **/*.js --quiet"
},
"dependencies": {
Expand Down

0 comments on commit 8ede283

Please sign in to comment.