Bump Microsoft.AspNetCore.Authentication.JwtBearer, Microsoft.AspNetCore.Authentication.OpenIdConnect and Microsoft.Identity.Web.DownstreamApi in /src #544
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: Full build | |
env: | |
STEP_TIMEOUT_MINUTES: 60 | |
on: | |
push: | |
branches: | |
- main | |
- release/** | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- main | |
- release/** | |
jobs: | |
build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
working-directory: ./src | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Dependencies | |
timeout-minutes: ${{ fromJSON(env.STEP_TIMEOUT_MINUTES) }} | |
uses: "./.github/steps/install_dependencies" | |
- name: Restore .NET dependencies | |
run: dotnet restore | |
- name: Restore Node.js dependencies | |
run: | | |
cd web/MZikmund.Web | |
npm install | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Test | |
run: dotnet test --no-build --configuration Release --verbosity normal |