We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b7d04e commit a427260Copy full SHA for a427260
1 file changed
lib/archiveManager.js
@@ -44,6 +44,10 @@ async function extractZipFiles({ zipPath, fileToExtract, exclude = [], outputNam
44
resolve();
45
return;
46
}
47
+ // Windows: yield a tick so the previous entry's read stream (zlib
48
+ // inflate + fd) fully tears down before requesting the next one,
49
+ // otherwise readEntry() can stall (observed on windows-latest/Node 24 CI).
50
+ await new Promise(setImmediate);
51
zipFile.readEntry();
52
} catch (err) {
53
reject(err);
0 commit comments