Codebase list node-moment / upstream/2.29.3+git20220417.1.c5b2334 tasks / check_sauce_creds.js
upstream/2.29.3+git20220417.1.c5b2334

Tree @upstream/2.29.3+git20220417.1.c5b2334 (Download .tar.gz)

check_sauce_creds.js @upstream/2.29.3+git20220417.1.c5b2334raw · history · blame

module.exports = function (grunt) {
    // Pull requests do not have secure variables enabled for security reasons.
    // Use this task before launching travis-sauce-browser task, so it would
    // exit early and won't try connecting to SauceLabs without credentials.
    grunt.registerTask('check-sauce-creds', function () {
        if (process.env.SAUCE_USERNAME === undefined) {
            grunt.log.writeln('No sauce credentials found');
            grunt.task.clearQueue();
        } else {
            grunt.log.writeln('Sauce credentials found');
        }
    });
};