image: mcr.microsoft.com/dotnet/core/sdk:latest pipelines: branches: main: - step: name: Run The Webserver caches: - dotnetcore script: - cd MyWebApp - dotnet run - step: name: Run the Playwright Tests caches: - dotnetcore script: - cd PlaywrightTests - dotnet test