Skip to content
This repository was archived by the owner on May 24, 2024. It is now read-only.

Commit 9fe08f8

Browse files
authored
Upgrade NPM to v9 (#599)
1 parent 9f310eb commit 9fe08f8

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Diff for: .github/actions/setup/action.yml

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ runs:
77
uses: actions/setup-node@v3
88
with:
99
node-version: 14.x
10+
- name: Setup NPM v9
11+
shell: bash
12+
run: npm install -g npm@9
13+
- name: Check Node & NPM versions
14+
shell: bash
15+
run: node -v && npm -v
1016
- name: Clean Environment
1117
shell: bash
1218
run: npm run clean

Diff for: .npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
package-lock=false
2+
legacy-peer-deps=true

Diff for: package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"url": "https://github.com/cerner/terra-ui/issues"
1010
},
1111
"engines": {
12-
"node": "^12.0.0 || ^14.0.0"
12+
"node": "12 || 14",
13+
"npm": "6 || 9"
1314
},
1415
"repository": {
1516
"type": "git",

0 commit comments

Comments
 (0)