We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4230d5 commit 057e1caCopy full SHA for 057e1ca
.github/workflows/dotnet.yml
@@ -22,6 +22,12 @@ jobs:
22
uses: actions/setup-dotnet@v3
23
with:
24
dotnet-version: 8.0.x
25
+
26
+ - uses: actions/setup-node@v3
27
+ - name: Install dependencies
28
+ run: npm ci
29
+ - name: Install playwright browsers
30
+ run: npx playwright install --with-deps
31
32
# run build and test
33
- name: Restore dependencies
.github/workflows/nuget.yml
@@ -16,7 +16,13 @@ jobs:
16
uses: actions/setup-dotnet@v4
17
18
dotnet-version: '8.0.x'
19
-
20
21
run: dotnet restore
0 commit comments