Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x, 20.x, 22.x, 24.x]
webpack-version: [latest]
exclude:
# TODO fix me
- os: windows-latest
node-version: 24.x

runs-on: ${{ matrix.os }}

Expand Down
5 changes: 5 additions & 0 deletions test/logging.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,11 @@ describe("logging", () => {
});

it("should logging on successfully build in multi-compiler mode", (done) => {
fs.lstat('D:\\System Volume Information', (err, stats) => {
if (err) console.error('>>> Error:', err); // 可能返回 EINVAL 或 EACCES
else console.log(111, stats);
});

let proc;

try {
Expand Down
Loading