]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Remove checking .min file in CI 846/head
authorNick Downie <hello@nickdownie.com>
Sat, 3 Jan 2015 17:19:28 +0000 (17:19 +0000)
committerNick Downie <hello@nickdownie.com>
Sat, 3 Jan 2015 17:19:28 +0000 (17:19 +0000)
.travis.yml
gulpfile.js

index 81eb4c6408609f95e268be8bae744f8b118e8a85..38f49829c5bc96565980f071b35cded9e8b404f9 100644 (file)
@@ -7,7 +7,4 @@ before_script:
   - npm install
 
 script:
-  - gulp jshint
-  - cp Chart.min.js /tmp/OLD
-  - gulp build
-  - cmp Chart.min.js /tmp/OLD # ensure build was run before commit
+  - gulp test
index af4d7b0173a365a300063204869f3b92b72e9b12..8b3baf95091d4eaede5e4817cef2ae5e1a9ab652 100644 (file)
@@ -116,7 +116,7 @@ gulp.task('watch', function(){
        gulp.watch('./src/*', ['build']);
 });
 
-gulp.task('test', ['jshint']);
+gulp.task('test', ['jshint', 'valid']);
 
 gulp.task('size', ['library-size', 'module-sizes']);