fix: stabilize Windows CI on Node 24
Windows CI / verify (push) Failing after 42s

This commit is contained in:
Sucukdeluxe
2026-08-12 13:19:51 +02:00
parent 49033f9ff2
commit 2cd8d97a20
11 changed files with 19 additions and 14 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ for (const relativePath of ['.github/workflows/windows-ci.yml', '.gitea/workflow
];
check(/runs-on:\s*windows-latest/.test(source), `${relativePath} does not use a Windows runner`);
check(/node-version:\s*['"]?22\.13\.0['"]?/.test(source), `${relativePath} does not pin Node 22.13.0`);
check(/node-version:\s*['"]?24\.11\.1['"]?/.test(source), `${relativePath} does not pin Node 24.11.1`);
for (const command of requiredCommands) {
check(source.includes(`run: ${command}`), `${relativePath} is missing ${command}`);
}