Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Node 18.15 #8631

Merged
merged 12 commits into from Mar 10, 2023
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"
JosiahSiegel marked this conversation as resolved.
Show resolved Hide resolved

- 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
2 changes: 1 addition & 1 deletion frontend-react/package.json
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