diff --git a/docs/src/best-practices-js.md b/docs/src/best-practices-js.md index 7a57193699..67740399f0 100644 --- a/docs/src/best-practices-js.md +++ b/docs/src/best-practices-js.md @@ -261,7 +261,7 @@ npx playwright --version Setup CI/CD and run your tests frequently. The more often you run your tests the better. Ideally you should run your tests on each commit and pull request. Playwright comes with a [GitHub actions workflow](/ci-intro.md) so that tests will run on CI for you with no setup required. Playwright can also be setup on the [CI environment](/ci.md) of your choice. -Use Linux when running your tests on CI as it is cheaper. Developers can use whatever environment when running locally but use linux on CI. +Use Linux when running your tests on CI as it is cheaper. Developers can use whatever environment when running locally but use linux on CI. Set up [Sharding](./test-sharding-js.md) to make CI faster. ### Lint your tests