We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f1a00e commit 0c635c7Copy full SHA for 0c635c7
.github/workflows/main.yml
@@ -62,6 +62,11 @@ jobs:
62
- uses: actions/setup-node@v3
63
with:
64
node-version: ${{ matrix.node }}
65
+ # Node.js 14 ships with npm@6, which has trouble installing latest versions of itself
66
+ - if: matrix.node == 14
67
+ run: npm install -g npm@8
68
+ # Install latest npm for older Node.js versions
69
+ - run: npm install -g npm
70
# Install node_modules
71
- uses: actions/cache@v3
72
id: cache-node_modules
0 commit comments