2023-01-19 16:38:21 +00:00
|
|
|
image: mcr.microsoft.com/dotnet/sdk:7.0
|
2023-01-19 16:17:21 +00:00
|
|
|
|
2023-01-19 16:10:06 +00:00
|
|
|
pipelines:
|
|
|
|
branches:
|
2023-01-19 16:11:54 +00:00
|
|
|
main:
|
2023-01-19 16:10:06 +00:00
|
|
|
- step:
|
2023-01-19 17:08:10 +00:00
|
|
|
name: WebTest Practice Build And Test
|
2023-01-19 16:17:21 +00:00
|
|
|
caches:
|
|
|
|
- dotnetcore
|
2023-01-19 16:10:06 +00:00
|
|
|
script:
|
|
|
|
- cd MyWebApp
|
2023-01-19 16:49:41 +00:00
|
|
|
- dotnet build
|
2023-01-19 16:44:53 +00:00
|
|
|
- dotnet run &
|
2023-01-19 17:01:48 +00:00
|
|
|
- cd ../PlaywrightTests
|
2023-01-19 16:49:41 +00:00
|
|
|
- dotnet build
|
2023-01-19 16:54:15 +00:00
|
|
|
- pwsh bin/Debug/net7.0/playwright.ps1 install-deps
|
2023-01-19 16:44:53 +00:00
|
|
|
- pwsh bin/Debug/net7.0/playwright.ps1 install
|
2023-01-19 16:10:06 +00:00
|
|
|
- dotnet test
|