@ckeditor/ckeditor5-dev-ci 56.4.0 → 56.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,7 +25,7 @@ export default function processJobStatuses( jobs ) {
25
25
  const jobsToProcess = jobsClone
26
26
  .filter( job => {
27
27
  // Ignore job with no dependencies.
28
- if ( !job.dependencies.length ) {
28
+ if ( !job.dependencies?.length ) {
29
29
  return false;
30
30
  }
31
31
 
@@ -92,5 +92,5 @@ function clone( obj ) {
92
92
  *
93
93
  * @property {'blocked'|'running'|'failed'|'canceled'|'failed_parent'|'success'|'skipped'} status
94
94
  *
95
- * @property {Array.<string>} dependencies
95
+ * @property {Array.<string>} [dependencies]
96
96
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-dev-ci",
3
- "version": "56.4.0",
3
+ "version": "56.6.0",
4
4
  "description": "Utils used on various Continuous Integration services.",
5
5
  "keywords": [],
6
6
  "author": "CKSource (http://cksource.com/)",