We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff6b901 commit 6bc0641Copy full SHA for 6bc0641
1 file changed
.github/workflows/test.yml
@@ -29,6 +29,11 @@ jobs:
29
with:
30
node-version: ${{ matrix.version }}
31
32
+ # This is needed as npm 11 has issues with running "npm ci" on projects that use "overrides"
33
+ - name: Install recent npm version (Node 24 only)
34
+ if: matrix.version == 24
35
+ run: npm install -g npm@11 && npm --version
36
+
37
- name: Install dependencies
38
run: npm ci
39
0 commit comments