Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phamtiendungcw #85

Merged
merged 6 commits into from
Oct 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow will build a .NET project
# This workflow will build a .NET project and deploy the Angular frontend to GitHub Pages.
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: Full Solution CI
Expand Down Expand Up @@ -46,16 +46,18 @@ jobs:
run: npm install
working-directory: ./src/MLS.MatLidStoreUI

- name: Install Angular CLI
run: npm install -g @angular/[email protected]
working-directory: ./src/MLS.MatLidStoreUI

- name: Install Husky
run: npx husky install
run: echo "Skipping Husky installation"
working-directory: ../

- name: Build Angular application
run: npm run build
run: ng build --configuration production --output-path ../../docs --base-href /MatLidStore/
working-directory: ./src/MLS.MatLidStoreUI

- name: Test Angular application
run: echo "Skipping tests as no .spec.ts files are present"
#run: npm run test -- --watch=false
working-directory: ./src/MLS.MatLidStoreUI

Loading