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

Commit

Permalink
upgrade to support NPMv9 (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdadn authored Aug 22, 2023
1 parent fe41997 commit 0fd5d8c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ runs:
uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Setup NPM v9
shell: bash
run: npm install -g npm@9
- name: Check Node & NPM versions
shell: bash
run: node -v && npm -v
- name: Clean Environment
shell: bash
run: npm run clean
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
package-lock=false
legacy-peer-deps=true
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"version": "0.0.0",
"description": "terra-application monorepo",
"engines": {
"node": "^10.0.0 || ^12.0.0 || ^14.0.0"
"node": "10 || 12 || 14",
"npm": "6 || 9"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 0fd5d8c

Please sign in to comment.