From 59ae200e0cda728b51bc2a464b8fe7a14ef16ebe Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Fri, 9 Aug 2024 14:09:39 +0200 Subject: [PATCH] add "3. build and install" --- docs/src/ci-intro.md | 4 +++- docs/src/ci.md | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) 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