No need to run CI test for gulp release

CI tests should be run before starting the release process
This commit is contained in:
Jia Hao 2016-03-14 12:44:30 +08:00
parent ffbe3fe93a
commit aeddcea4cb
1 changed files with 1 additions and 2 deletions

View File

@ -9,6 +9,5 @@ gulp.task('publish', done => {
});
gulp.task('release', callback => {
return runSequence('test', 'lint', 'build', 'publish', callback);
return runSequence('build', 'publish', callback);
});