We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f56b65d commit b288dbcCopy full SHA for b288dbc
.github/workflows/main.yml
@@ -24,9 +24,21 @@ jobs:
24
# Added Ahead-Of-Time workload
25
- name: Add AOT Workload
26
run: |
27
- dotnet workload install wasm-tools-net7
+ dotnet workload install wasm-tools
28
dotnet workload restore
29
30
+ # Build
31
+ - name: Build
32
+ run: dotnet build
33
+
34
+ # Install PlayWright
35
+ - name: Install PlayWright
36
+ run: pwsh tests/IntegrationTests/bin/Debug/net8.0/playwright.ps1 install --with-deps
37
38
+ # Run tests
39
+ - name: Test
40
+ run: dotnet test
41
42
# Generate the website
43
- name: Publish
44
run: dotnet publish samples/KristofferStrube.Blazor.WebAudio.WasmExample/KristofferStrube.Blazor.WebAudio.WasmExample.csproj --configuration Release --output build
0 commit comments