diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 81075edac..781c410c3 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -66,7 +66,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node-version: [18.x, 20.x, 22.x, 24.x] + node-version: [24.1.0, 24.0.2, 24.0.1, 24.0.0] webpack-version: [latest] runs-on: ${{ matrix.os }} diff --git a/test/middleware.test.js b/test/middleware.test.js index f6b59b03a..9324a5c14 100644 --- a/test/middleware.test.js +++ b/test/middleware.test.js @@ -32,6 +32,10 @@ import getCompiler from "./helpers/getCompiler"; import getCompilerHooks from "./helpers/getCompilerHooks"; +fs.lstat("D:\\System Volume Information", (err, stats) => { + console.error("CI_TEST: ", err, stats) +}); + // Suppress unnecessary stats output jest.spyOn(globalThis.console, "log").mockImplementation();