Skip to content

fixed runtime error in Angular project #366

fixed runtime error in Angular project

fixed runtime error in Angular project #366

Workflow file for this run

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