diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index eb0d51e..ffbefd2 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -1,12 +1,19 @@ +image: mcr.microsoft.com/dotnet/core/sdk:3.1 + 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