fixed runtime error in Angular project #366
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: .NET Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build Web API | |
run: dotnet build ./src/Server/Logistics.API/Logistics.API.csproj | |
- name: Build Identity Server | |
run: dotnet build ./src/Server/Logistics.IdentityServer/Logistics.IdentityServer.csproj | |
- name: Build Admin App | |
run: dotnet build ./src/Client/Logistics.AdminApp/Logistics.AdminApp.csproj |