Skip to content

Commit

Permalink
fix(build): Run the linter before build on CI machines
Browse files Browse the repository at this point in the history
  • Loading branch information
bengotow committed Nov 14, 2016
1 parent f058618 commit a0a5f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}

0 comments on commit a0a5f6e

Please sign in to comment.