From 6ced6bc4a31925a6497ccfb7e44c20ca27930acd Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 27 Apr 2026 14:29:37 +0100 Subject: [PATCH] ci: satisfy live shard lint --- scripts/test-live-shard.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-live-shard.mjs b/scripts/test-live-shard.mjs index 55a06e52959..b58e352d573 100644 --- a/scripts/test-live-shard.mjs +++ b/scripts/test-live-shard.mjs @@ -50,7 +50,7 @@ export function collectAllLiveTestFiles(repoRoot = process.cwd()) { .flatMap((dir) => walkFiles(path.join(repoRoot, dir))) .map((file) => path.relative(repoRoot, file).split(path.sep).join("/")) .filter((file) => file.endsWith(LIVE_TEST_SUFFIX)) - .sort((a, b) => a.localeCompare(b)); + .toSorted((a, b) => a.localeCompare(b)); } function extensionKey(file) {