webtestpractice/bitbucket-pipelines.yml
2023-01-19 16:22:29 +00:00

20 lines
417 B
YAML

image: mcr.microsoft.com/dotnet/core/sdk:5.0
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