From 329ad3cdce57733d6340a81c00e18d8e062c27bb Mon Sep 17 00:00:00 2001 From: Nick Downie Date: Sat, 3 Jan 2015 17:19:28 +0000 Subject: [PATCH] Remove checking .min file in CI --- .travis.yml | 5 +---- gulpfile.js | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) 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']); -- 2.47.2