name: msbuild on: [push] env: BUILD_TYPE: Release jobs: build: runs-on: dotnet7 steps: - name: Prep for local builds run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts - uses: actions/checkout@v2 - name: Setup .NET 7.0 uses: actions/setup-dotnet@v3 with: dotnet-version: '7.0.x' - name: Install PowerShell run: dotnet tool install PowerShell -g --version 7.2 && export PATH="$PATH:/root/.dotnet/tools" - name: Where Am I shell: bash working-directory: ${{runner.workspace}} run: export PATH="$PATH:/root/.dotnet/tools" && pwd && ls -l && dotnet --info && pwsh --version - name: Start Web shell: bash working-directory: ${{runner.workspace}} run: cd MyWebApp && nohup dotnet run & - name: Run Playwright Tests shell: bash working-directory: ${{runner.workspace}} run: export PATH="$PATH:/root/.dotnet/tools" && cd PlaywrightTests && dotnet build && pwsh bin/Debug/net7.0/playwright.ps1 install && dotnet test