Skip to content

nuget.config

nuget.config #5

Workflow file for this run

name: .NET ,NPM Build
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: .NET ,Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Dependencies ,Restore
run: cd BackEnd | dotnet restore
- name: npm ,Setup
working-directory: FrontEnd
run: npm install
- name: Frontend ,nx-build
working-directory: FrontEnd
run: npm run build
- name: Dotnet ,Build
run: cd BackEnd | dotnet build --no-restore
- name: Dotnet ,Test
run: cd BackEnd | dotnet test --no-build --verbosity normal