@zeit/schemas
Advanced tools
Comparing version 2.8.0 to 2.9.0
@@ -134,2 +134,5 @@ const {Service} = require('./service'); | ||
type: 'boolean' | ||
}, | ||
autoJobCancelation: { | ||
type: 'boolean' | ||
} | ||
@@ -136,0 +139,0 @@ }, |
{ | ||
"name": "@zeit/schemas", | ||
"version": "2.8.0", | ||
"version": "2.9.0", | ||
"description": "All schemas used for validation that are shared between our projects", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -247,2 +247,11 @@ /* eslint camelcase: 0 */ | ||
exports.test_github_auto_job_cancelation = () => { | ||
const isValid = ajv.validate(deploymentConfigSchema, { | ||
github: { | ||
autoJobCancelation: false | ||
} | ||
}); | ||
assert.equal(isValid, true); | ||
}; | ||
exports.test_github_additional_field = () => { | ||
@@ -249,0 +258,0 @@ const isValid = ajv.validate(deploymentConfigSchema, { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74110
805