We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36bec30 commit c9f5c55Copy full SHA for c9f5c55
grunt.js
@@ -114,14 +114,13 @@ module.exports = function(grunt){
114
});
115
116
var testJobs = ["build", "server"];
117
- if (saucekey !== null) {
118
- testJobs.push("saucelabs-qunit");
119
- }
120
if (process.env.CI && process.env.TRAVIS) {
+ if (saucekey !== null) {
+ testJobs.push("saucelabs-qunit");
+ }
121
testJobs.push("publish");
122
}
123
124
grunt.registerTask('test', testJobs.join(" "));
125
-
126
grunt.registerTask('default', 'build');
127
};
0 commit comments