From fb24647b80919f99f8a9cda80dd33932a341593a Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Thu, 19 Jan 2023 16:17:21 +0000 Subject: [PATCH] fix pipeline script --- bitbucket-pipelines.yml | 7 +++++++ 1 file changed, 7 insertions(+) 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