@codefresh-io/yaml-validator
Version:
An NPM module/CLI for validating the Codefresh YAML
30 lines (21 loc) • 698 B
JavaScript
/**
* Defines the git clone step schema
*/
;
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
const BaseSchema = require('../base-schema');
class Parallel extends BaseSchema {
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
static getType() {
return 'parallel';
}
getSchema() {
return this._createSchema({ });
}
}
// Exported objects/methods
module.exports = Parallel;