Skip to content

Commit f7a5cbe

Browse files
committed
Make all
1 parent d0c27d0 commit f7a5cbe

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ node_js:
55
- "0.8"
66

77
script:
8-
- "make build TASK=jshint"
9-
- "make test"
8+
- "make all"

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ TEST=*
44
# make build TASK=otr
55
TASK=default
66

7+
all: lint test
8+
9+
lint:
10+
./node_modules/.bin/grunt jshint
11+
712
test:
813
./node_modules/.bin/mocha -G -R spec test/spec/unit/$(TEST).js
914

contributing.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
Contributors Wanted!
22
====================
3+
4+
Thanks for your interest.
5+
6+
If you're submitting a pull request, please run `make all` first and fix any errors that may arise as a result of your patch. You may need to `npm install` first, if you haven't already.

0 commit comments

Comments
 (0)