We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a2dd8e commit 80cca59Copy full SHA for 80cca59
1 file changed
.github/workflows/ci.yaml
@@ -148,8 +148,9 @@ jobs:
148
with:
149
name: build
150
- run: npm install --no-package-lock
151
- # npm 6 (shipped with Node 14) ignores `overrides`, so pin chokidar manually
152
- - run: npm install --no-package-lock --no-save chokidar@^4
+ # npm 6 (shipped with Node 14) ignores `overrides` and nests chokidar@5 under mocha;
+ # replace it with the CJS-compatible chokidar@4
153
+ - run: rm -rf node_modules/mocha/node_modules/chokidar && npm install --no-package-lock --no-save --prefix node_modules/mocha chokidar@^4
154
- run: npm run test:legacy
155
156
smoke-os:
0 commit comments