aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..15c7ce7
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,32 @@
1language: node_js
2
3notifications:
4 email:
5 - yiminghe@gmail.com
6
7node_js:
8- 4.0.0
9
10before_install:
11- |
12 if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(docs|examples))/'
13 then
14 echo "Only docs were updated, stopping build process."
15 exit
16 fi
17 npm install mocha-phantomjs -g
18 phantomjs --version
19
20script:
21- |
22 if [ "$TEST_TYPE" = test ]; then
23 npm test
24 else
25 npm run $TEST_TYPE
26 fi
27
28env:
29 matrix:
30 - TEST_TYPE=lint
31 - TEST_TYPE=browser-test
32 - TEST_TYPE=browser-test-cover