Skip to content

Commit

Permalink
Update to Node 18.15 (#8631)
Browse files Browse the repository at this point in the history
* Update to Node 18
Fixes #7078
  • Loading branch information
jpandersen87 committed Mar 10, 2023
1 parent 56bac26 commit b9f927e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-frontend/action.yml
Expand Up @@ -28,7 +28,7 @@ runs:
- name: Use Node.js ${{ matrix.node-version }} with yarn
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
with:
node-version: "16.19.1"
node-version: "18.15"

- run: yarn install
working-directory: frontend-react
Expand Down
2 changes: 1 addition & 1 deletion frontend-react/.nvmrc
@@ -1 +1 @@
16.19.1
18.15
6 changes: 3 additions & 3 deletions frontend-react/README.md
Expand Up @@ -12,9 +12,9 @@ Use the directions here to install nvm: https://github.com/nvm-sh/nvm#install--u
Then:

```bash
nvm install 16.19.x # refer to nvmrc for exact current version
node -v # v16.19.x
npm -v # v8.x.x
nvm install 18.15.x # refer to nvmrc for exact current version
node -v # v18.15.x
npm -v # v9.5.x

npm install --global yarn
```
Expand Down
4 changes: 2 additions & 2 deletions frontend-react/package.json
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.1",
"private": true,
"npmClient": "yarn",
"proxy": "http://localhost:7071",
"proxy": "http://127.0.0.1:7071",
"dependencies": {
"@microsoft/applicationinsights-react-js": "^3.4.1",
"@microsoft/applicationinsights-web": "^2.8.10",
Expand Down Expand Up @@ -190,6 +190,6 @@
"workbox-webpack-plugin": "^6.5.4"
},
"engines": {
"node": "~16.19.1"
"node": "~18.15"
}
}
Expand Up @@ -134,9 +134,9 @@ Use the directions here to install nvm: https://github.com/nvm-sh/nvm#install--u
Then:

```bash
nvm install 16.19.x # refer to nvmrc for exact current version
node -v # v16.19.x
npm -v # v8.x.x
nvm install 18.15x # refer to nvmrc for exact current version
node -v # v18.15x
npm -v # v9.5.x

npm install --global yarn
```
Expand Down

0 comments on commit b9f927e

Please sign in to comment.