From baf32dd62f302822639f036454588a8db4033d55 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 29 Jan 2016 10:15:34 -0800 Subject: [PATCH] [Build] Add verify task --- gulpfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index c0397059a3..ab14ae7d8b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -114,4 +114,6 @@ gulp.task('static', function () { .pipe(gulp.dest(paths.dist)); }); -gulp.task('install', [ 'static', 'scripts', 'stylesheets' ]); \ No newline at end of file +gulp.task('install', [ 'static', 'scripts', 'stylesheets' ]); + +gulp.task('verify', [ 'lint', 'test' ]); \ No newline at end of file