diff --git a/docs/src/ci-intro.md b/docs/src/ci-intro.md index 785d5c8dc9..492130088a 100644 --- a/docs/src/ci-intro.md +++ b/docs/src/ci-intro.md @@ -156,7 +156,8 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x - - run: dotnet build + - name: Build & Install + run: dotnet build - name: Ensure browsers are installed run: pwsh bin/Debug/net8.0/playwright.ps1 install --with-deps - name: Run your tests @@ -169,6 +170,7 @@ Looking at the list of steps in `jobs.test.steps`, you can see that the workflow 1. Clone your repository 2. Install language dependencies +3. Install project dependencies and build 4. Install Playwright Browsers 5. Run tests diff --git a/docs/src/ci.md b/docs/src/ci.md index e72ce215d6..9bcc57a2fb 100644 --- a/docs/src/ci.md +++ b/docs/src/ci.md @@ -179,7 +179,8 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x - - run: dotnet build + - name: Build & Install + run: dotnet build - name: Ensure browsers are installed run: pwsh bin/Debug/net8.0/playwright.ps1 install --with-deps - name: Run your tests