File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: 🧪 Run Playwright UI Tests
2
2
3
3
on :
4
4
push :
5
- branches : [main ]
5
+ branches : [master ]
6
6
pull_request :
7
- branches : [main ]
7
+ branches : [master ]
8
8
9
9
jobs :
10
10
playwright-ui-tests :
@@ -19,14 +19,17 @@ jobs:
19
19
with :
20
20
dotnet-version : 8.0.x
21
21
22
- - name : 📦 Restore dependencies
22
+ - name : 📦 Restore NuGet packages
23
23
run : dotnet restore
24
24
25
- - name : 🔨 Build project
25
+ - name : 🔨 Build the project
26
26
run : dotnet build --configuration Release
27
27
28
+ - name : 💡 Restore .NET Tools (like dotnet-playwright)
29
+ run : dotnet tool restore
30
+
28
31
- name : 🚀 Install Playwright browsers
29
- run : pwsh bin/Debug/net8.0/ playwright.ps1 install
32
+ run : dotnet playwright install
30
33
31
34
- name : 🧪 Run UI tests
32
35
run : dotnet test --configuration Release --logger "console;verbosity=detailed"
You can’t perform that action at this time.
0 commit comments