Skip to content

Commit 38d4312

Browse files
committed
Add Travis CI support.
1 parent 8979f1b commit 38d4312

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- 0.6
4+
- 0.8
5+
- 0.9
6+

grunt.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ module.exports = function(grunt) {
8888
qunit: {
8989
noWebRTC: ['test/run-TestNoWebRTC.html']
9090
},
91-
uglify: {}
91+
uglify: {},
92+
scripts: {
93+
test: 'grunt travis --verbose'
94+
}
9295
});
9396

9497
// Default task.
@@ -135,4 +138,8 @@ module.exports = function(grunt) {
135138
});
136139
});
137140

141+
// Travis CI task (it does everything).
142+
// Doc: http://manuel.manuelles.nl/blog/2012/06/22/integrate-travis-ci-into-grunt/
143+
grunt.registerTask('travis', ['grammar', 'default', 'test']);
144+
138145
};

0 commit comments

Comments
 (0)