From: Nick Downie Date: Sat, 3 Jan 2015 17:19:28 +0000 (+0000) Subject: Remove checking .min file in CI X-Git-Tag: v1.0.1~6^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F846%2Fhead;p=thirdparty%2FChart.js.git Remove checking .min file in CI --- diff --git a/.travis.yml b/.travis.yml index 81eb4c640..38f49829c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/gulpfile.js b/gulpfile.js index af4d7b017..8b3baf950 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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']);