Skip to content

Commit 6c28fce

Browse files
committed
master - removed nsp calls and updated node versions in test
1 parent 1426a88 commit 6c28fce

File tree

4 files changed

+3151
-9
lines changed

4 files changed

+3151
-9
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ language: node_js
22
node_js:
33
- "node"
44
- "lts/*"
5-
- "6"
6-
- "4"
5+
- "8"
6+
- "10"
7+
- "12"
78
services:
89
- mongodb
910
before_script:
@@ -13,4 +14,3 @@ script:
1314
- make test
1415
- until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done; sleep 1
1516
- make integration-test
16-
- make safe

Makefile

-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ JSHINT ?= node_modules/jshint/bin/jshint
1212
MOCHA ?= node_modules/mocha/bin/mocha
1313
REPORTER ?= spec
1414
NODEMON ?= node_modules/nodemon/bin/nodemon.js
15-
NSP ?= node_modules/.bin/nsp
1615

1716
all: build
1817

@@ -66,9 +65,6 @@ lint:
6665
@echo -----------------
6766
$(NODE) $(JSHINT) $(TESTS)
6867

69-
safe:
70-
$(NSP) check
71-
7268
release: lint build test integration-test safe
7369
@echo ------------------------------------------
7470
@echo - ready to bump versions and npm release -

0 commit comments

Comments
 (0)