Skip to content

Commit 4adbc5c

Browse files
committed
improve gulp task
1 parent 554db66 commit 4adbc5c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ node_js:
44

55
script:
66
- npm test
7-
- gulp lint

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ gulp.task('lint', function() {
1414
/**
1515
* Run test once and exit
1616
*/
17-
gulp.task('test', function (done) {
17+
gulp.task('test', ['lint'], function (done) {
1818
karma.start(_.assign({}, karmaConf, {singleRun: true}), done);
1919
});
2020

0 commit comments

Comments
 (0)