File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 - name : Install Playwright browsers & dependencies
3030 run : pwsh test/OrchardCoreContrib.Testing.UI.Tests/bin/Release/net8.0/playwright.ps1 install --with-deps
3131 - name : Test
32- if : startsWith(matrix.os, 'ubuntu')
33- run : xvfb-run dotnet test test/OrchardCoreContrib.Testing.UI.Tests -c Release --no-restore --verbosity normal
34- - name : Test
35- if : " !startsWith(matrix.os, 'ubuntu')"
36- run : dotnet test test/OrchardCoreContrib.Testing.UI.Tests -c Release --no-restore --verbosity normal
32+ run : |
33+ if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
34+ xvfb-run dotnet test test/OrchardCoreContrib.Testing.UI.Tests -c Release --no-restore --verbosity normal
35+ else
36+ dotnet test test/OrchardCoreContrib.Testing.UI.Tests -c Release --no-restore --verbosity normal
37+ fi
You can’t perform that action at this time.
0 commit comments