From 220e8a5b3e56732d575ed54b4e8ed5e3df98939b Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Sat, 24 Jan 2026 07:37:32 -0800 Subject: [PATCH] Update contributing guidelines for clarity and structure --- CONTRIBUTING.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8777d2e..2ce1196 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,26 +1,28 @@ # Contributing -Playwright CLI sources are located in the [Playwright monorepo](https://github.com/microsoft/playwright/tree/main/packages/playwright/src/mcp/terminal). +[Playwright CLI sources](https://github.com/microsoft/playwright/tree/main/packages/playwright/src/mcp/terminal) are located in the [Playwright monorepo](https://github.com/microsoft/playwright). -### Check out sources +### Clone ```bash git clone https://github.com/microsoft/playwright +cd playwright +npm i ``` -### Start watch +### Build ```bash npm run watch ``` -### Run cli +### Run ```bash -npm run playwright-cli +npm run playwright-cli open example.com -- --headed ``` -### Run tests +### Test ```bash npm run test-playwright-cli