fix pipeline script

This commit is contained in:
Greg Gauthier 2023-01-19 16:17:21 +00:00
parent 2e88a2e4fe
commit fb24647b80

View File

@ -1,12 +1,19 @@
image: mcr.microsoft.com/dotnet/core/sdk:3.1
pipelines: pipelines:
branches: branches:
main: main:
- step: - step:
name: Run The Webserver name: Run The Webserver
caches:
- dotnetcore
script: script:
- cd MyWebApp - cd MyWebApp
- dotnet run - dotnet run
- step: - step:
name: Run the Playwright Tests name: Run the Playwright Tests
caches:
- dotnetcore
script:
- cd PlaywrightTests - cd PlaywrightTests
- dotnet test - dotnet test