From 12bc2a0a3997526a055ed5a8eeb06ca5ccfb33cd Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 17 Feb 2014 13:03:20 -0700 Subject: [PATCH] Add license-check step to CI grunt task --- build/Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 9e0f1b4eb..05c3899ee 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -227,6 +227,6 @@ module.exports = (grunt) -> grunt.registerTask('compile', ['coffee', 'prebuild-less', 'cson', 'peg']) grunt.registerTask('lint', ['coffeelint', 'csslint', 'lesslint']) grunt.registerTask('test', ['shell:kill-atom', 'run-specs']) - grunt.registerTask('ci', ['output-disk-space', 'download-atom-shell', 'build', 'set-version', 'lint', 'test', 'codesign', 'publish-build']) + grunt.registerTask('ci', ['output-disk-space', 'download-atom-shell', 'build', 'set-version', 'check-licenses', 'lint', 'test', 'codesign', 'publish-build']) grunt.registerTask('docs', ['markdown:guides', 'build-docs']) grunt.registerTask('default', ['download-atom-shell', 'build', 'set-version', 'install'])