docs(contribution-guide): add min NPM/Node version requirement (#17754)
This commit is contained in:
parent
a9807ce93d
commit
253e3d2814
|
|
@ -17,6 +17,14 @@
|
||||||
|
|
||||||
### Getting Code
|
### Getting Code
|
||||||
|
|
||||||
|
Make sure you're running Node.js 14+ and NPM 8+, to verify and upgrade NPM do:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
node --version
|
||||||
|
npm --version
|
||||||
|
npm i -g npm@latest
|
||||||
|
```
|
||||||
|
|
||||||
1. Clone this repository
|
1. Clone this repository
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
@ -27,7 +35,7 @@ cd playwright
|
||||||
2. Install dependencies
|
2. Install dependencies
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install
|
npm ci
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Build Playwright
|
3. Build Playwright
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue