diff --git a/lib/workers/repository/process/libyear.spec.ts b/lib/workers/repository/process/libyear.spec.ts index bf30b5ab9f4c28338615771f78033f119c55226c..3cbdb77fb8be381cf930e275eff14503592b29c3 100644 --- a/lib/workers/repository/process/libyear.spec.ts +++ b/lib/workers/repository/process/libyear.spec.ts @@ -179,7 +179,7 @@ describe('workers/repository/process/libyear', () => { npm: 1, regex: 1, }, - // eslint-disable-next-line no-loss-of-precision + totalLibYears: 2, totalDepsCount: 2, outdatedDepsCount: 2, diff --git a/tools/test-shards.ts b/tools/test-shards.ts index 0de5287c4a5d8d289b61d7c5e31c9ccb90b951f7..3d2ed4d30e925ad71ea32a284189033c3ed5c5f2 100644 --- a/tools/test-shards.ts +++ b/tools/test-shards.ts @@ -61,13 +61,11 @@ if (process.env.FILTER_SHARDS === 'true' && process.env.CHANGED_FILES) { const changedFiles: string[] = JSON.parse(process.env.CHANGED_FILES); const matchingShards = getMatchingShards(changedFiles); if (matchingShards.length === 0) { - // eslint-disable-next-line no-console console.log(`test-matrix-empty=true`); process.exit(0); } shardKeys = shardKeys.filter((key) => matchingShards.includes(key)); } catch (err) { - // eslint-disable-next-line no-console console.error(err); process.exit(1); } @@ -141,5 +139,5 @@ for (const [os, groups] of Object.entries(shardGrouping)) { /** * Output will be consumed by `setup` CI job. */ -// eslint-disable-next-line no-console + console.log(`test-shard-matrix=${JSON.stringify(shardGroups)}`);