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

chore: use node 20 for .nvmrc #27970

Merged
merged 2 commits into from Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
18.19.1
20.11.1
4 changes: 2 additions & 2 deletions docs/development/local-development.md
Expand Up @@ -15,14 +15,14 @@ You need the following dependencies for local development:
- pnpm `^8.6.11` (use corepack)
- C++ compiler

We support Node.js versions according to the [Node.js release schedule](https://github.com/nodejs/Release#release-schedule).
We recommend you use the version of Node.js defined in the repository's `.nvmrc`.

#### Linux

You can use the following commands on Ubuntu.

```sh
curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get update
sudo apt-get install -y git build-essential nodejs
corepack enable
Expand Down