From d843a9fbdcc0e4eae53bda4c68c53bf4946f7117 Mon Sep 17 00:00:00 2001 From: Ivan Josipovic <9521987+IvanJosipovic@users.noreply.github.com> Date: Wed, 22 Apr 2020 18:10:33 -0700 Subject: [PATCH] bug fix for new tests --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1346537f..4f4d1377 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,11 @@ jobs: working-directory: src/BlazorTable run: dotnet pack -c Release -p:Version=${{ steps.version.outputs.new_tag }} + - name: Set Test Address + run: | + Set-Content -Path "src/BlazorTable.Tests/BrowserTestsAddress.config" -Value "https://blazortable.netlify.app"; + shell: pwsh + - name: Dotnet Test run: dotnet test --configuration Release