From 253e3d28145c8086d8b2aa22f1f02b5d42023139 Mon Sep 17 00:00:00 2001 From: Peter Ng Date: Tue, 4 Oct 2022 12:17:25 +0200 Subject: [PATCH] docs(contribution-guide): add min NPM/Node version requirement (#17754) --- CONTRIBUTING.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9e4b58fa5c..69a786bbe5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,6 +17,14 @@ ### 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 ```bash @@ -27,7 +35,7 @@ cd playwright 2. Install dependencies ```bash -npm install +npm ci ``` 3. Build Playwright