aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorPete Bacon Darwin2013-11-05 21:22:04 +0000
committerPete Bacon Darwin2013-11-05 21:22:04 +0000
commit0fca288224b4521679fc3f2ecdeb1166cd0a4156 (patch)
tree764717bd535acbbac94d1e2fe11e3a817d23172a /Gruntfile.js
parentd4493fda2c4c2ff1fdfc264bfb479741abc781c7 (diff)
downloadangular.js-0fca288224b4521679fc3f2ecdeb1166cd0a4156.tar.bz2
chore(grunt): add test:docsgen to ci checks
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index b8ae0181..568b1096 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -294,6 +294,6 @@ module.exports = function(grunt) {
grunt.registerTask('webserver', ['connect:devserver']);
grunt.registerTask('package', ['bower','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
grunt.registerTask('package-without-bower', ['clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
- grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint']);
+ grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'test:docgen']);
grunt.registerTask('default', ['package']);
};