From 0f1958f3b8f56fbcc4a03e9a9188e3f43f2775ae Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Mon, 14 Nov 2016 12:33:13 -0800 Subject: [PATCH] fix(build): Run the linter before build on CI machines --- build/Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.js b/build/Gruntfile.js index 1d04e44fd..b34798621 100644 --- a/build/Gruntfile.js +++ b/build/Gruntfile.js @@ -64,5 +64,5 @@ module.exports = (grunt) => { grunt.registerTask('build', ['packager']); grunt.registerTask('lint', ['eslint', 'lesslint', 'nylaslint', 'coffeelint', 'csslint']); - grunt.registerTask('ci', ['build'].concat(postBuildSteps)); + grunt.registerTask('ci', ['lint', 'build'].concat(postBuildSteps)); }