From 7136c1bd0f6d781c5c7cbd8960d3d92691d39470 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Thu, 19 Jan 2023 16:10:06 +0000 Subject: [PATCH] stub out a basic pipeline --- bitbucket-pipelines.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml new file mode 100644 index 0000000..c38903a --- /dev/null +++ b/bitbucket-pipelines.yml @@ -0,0 +1,12 @@ +pipelines: + branches: + master: + - step: + name: Run The Webserver + script: + - cd MyWebApp + - dotnet run + - step: + name: Run the Playwright Tests + - cd PlaywrightTests + - dotnet test