Skip to content

Commit

Permalink
Upgrade to circleci2 (#14)
Browse files Browse the repository at this point in the history
* Upgraded circleci to 2.0, upped mocha version

* Locking down dev dependencies
  • Loading branch information
bearjaws committed Dec 2, 2018
1 parent da40525 commit 761fae5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
14 changes: 14 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,14 @@
version: 2
jobs:
test:
docker:
- image: circleci/node:8.12.0-jessie
steps:
- checkout
- run: npm i
- run: npm test
workflows:
version: 2
build_and_test:
jobs:
- test
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "wget-improved",
"version": "3.0.1",
"version": "3.0.2",
"description": "wget in nodejs, forked from wuchengwei/node-wget to add improvements and help maintain the project",
"keywords": [
"download",
Expand Down Expand Up @@ -33,12 +33,12 @@
},
"license": "MIT",
"devDependencies": {
"chai": "^4.0.2",
"express": "^4.16.3",
"mocha": "^5.2.0",
"request": "^2.88.0"
"chai": "4.0.2",
"express": "4.16.3",
"mocha": "5.2.0",
"request": "2.88.0"
},
"scripts": {
"test": "mocha test/test.js"
"test": "mocha test/test.js --exit"
}
}

0 comments on commit 761fae5

Please sign in to comment.