webtestpractice/bitbucket-pipelines.yml

20 lines
421 B
YAML

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