Skip to content

Commit

Permalink
Internal: Do not check CC for the ckeditor5-find-and-replace feature …
Browse files Browse the repository at this point in the history
…on CI.
  • Loading branch information
pomek committed Jun 30, 2021
1 parent 78e2c4f commit f484532
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/ci/check-packages-code-coverage.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ const packages = childProcess.execSync( 'ls -1 packages', {

packages.unshift( 'ckeditor5' );

// Temporary: Do not check the `ckeditor5-find-and-replace` package.
const findReplaceIndex = packages.indexOf( 'ckeditor5-find-and-replace' );

if ( findReplaceIndex !== -1 ) {
packages.splice( findReplaceIndex, 1 );
}

for ( const fullPackageName of packages ) {
const simplePackageName = fullPackageName.replace( /^ckeditor5?-/, '' );
const foldLabelName = 'pkg-' + simplePackageName;
Expand Down

0 comments on commit f484532

Please sign in to comment.