From 6dfc52821bd6c400892b67b46980e1257a3d5728 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 12 May 2016 16:27:11 -0700 Subject: [PATCH] [Code Style] Enforce codestyle during verify task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 28d4530b9c..c3e82295d6 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -147,6 +147,6 @@ gulp.task('develop', ['serve', 'stylesheets', 'watch']); gulp.task('install', [ 'static', 'scripts' ]); -gulp.task('verify', [ 'lint', 'test' ]); +gulp.task('verify', [ 'lint', 'test', 'checkstyle' ]); gulp.task('build', [ 'verify', 'install' ]);