Skip to content

Bump Microsoft.AspNetCore.Authentication.JwtBearer, Microsoft.AspNetCore.Authentication.OpenIdConnect and Microsoft.Identity.Web.DownstreamApi in /src #544

Bump Microsoft.AspNetCore.Authentication.JwtBearer, Microsoft.AspNetCore.Authentication.OpenIdConnect and Microsoft.Identity.Web.DownstreamApi in /src

Bump Microsoft.AspNetCore.Authentication.JwtBearer, Microsoft.AspNetCore.Authentication.OpenIdConnect and Microsoft.Identity.Web.DownstreamApi in /src #544

Workflow file for this run

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