diff --git a/docs/src/best-practices-js.md b/docs/src/best-practices-js.md index 67740399f0..15b4ffc993 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. Set up [Sharding](./test-sharding-js.md) to make CI faster. +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.md) to make CI faster. ### Lint your tests diff --git a/docs/src/ci-intro.md b/docs/src/ci-intro.md index 82d68b7f4d..0550858808 100644 --- a/docs/src/ci-intro.md +++ b/docs/src/ci-intro.md @@ -11,7 +11,7 @@ Playwright tests can be run on any CI provider. This guide covers one way of run #### You will learn * langs: js -- [How to run tests on push/pull_request](/ci-intro.md#on-pushpull_request) +- [How to set up GitHub Actions](/ci-intro.md#setting-up-github-actions) - [How to view test logs](/ci-intro.md#viewing-test-logs) - [How to view the HTML report](/ci-intro.md#viewing-the-html-report) - [How to view the trace](/ci-intro.md#viewing-the-trace) @@ -26,7 +26,7 @@ Playwright tests can be ran on any CI provider. In this section we will cover ru #### You will learn * langs: python, java, csharp -- [How to set up GitHub Actions](/ci-intro.md#setting-up-GitHub-Actions) +- [How to set up GitHub Actions](/ci-intro.md#setting-up-github-actions) - [How to view test logs](/ci-intro.md#viewing-test-logs) - [How to view the trace](/ci-intro.md#viewing-the-trace)