Skip to content

Commit

Permalink
chore(grunt): add Sauce Labs test to publish task
Browse files Browse the repository at this point in the history
  • Loading branch information
seriema committed Aug 9, 2015
1 parent 1ee0c8e commit 38d7b4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,9 @@ module.exports = function (grunt) {
]);

grunt.registerTask('publish', ['publish:patch']);
grunt.registerTask('publish:patch', ['test', 'bump-only:patch', '_publish']);
grunt.registerTask('publish:minor', ['test', 'bump-only:minor', '_publish']);
grunt.registerTask('publish:major', ['test', 'bump-only:major', '_publish']);
grunt.registerTask('publish:patch', ['test', 'karma:sauce', 'bump-only:patch', '_publish']);
grunt.registerTask('publish:minor', ['test', 'karma:sauce', 'bump-only:minor', '_publish']);
grunt.registerTask('publish:major', ['test', 'karma:sauce', 'bump-only:major', '_publish']);

grunt.registerTask('default', [
'test',
Expand Down

0 comments on commit 38d7b4c

Please sign in to comment.