Bump Microsoft.IdentityModel.JsonWebTokens from 6.8.0 to 6.32.3 in /IVRPhoneTree.Web #484
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NetFx | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout Code | |
- name: Setup MSBuild Path | |
uses: microsoft/setup-msbuild@v1 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1 | |
- name: Restore NuGet Packages | |
run: nuget restore IVRPhoneTree.sln | |
- name: Build Web App | |
run: msbuild IVRPhoneTree.sln /verbosity:minimal | |
- name: Run Tests with NUnit Console | |
run: .\packages\NUnit.ConsoleRunner.3.11.1\tools\nunit3-console IVRPhoneTree.Web.Test\bin\Debug\IVRPhoneTree.Web.Test.dll |