Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinAdodo committed Nov 23, 2024
1 parent 3c37e48 commit 405a0d4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,18 @@ jobs:
cache: 'npm' # This option automatically caches npm dependencies and replaces the separate cache step

- name: Install dependencies
run: npm install # Install all project dependencies

run: |
npm install @angular/cli@18.0.0 @angular-devkit/build-angular@18.0.0 --save-dev
npm install # Install all project dependencies
- name: Install Angular CLI globally
run: npm install -g @angular/cli@^18.0.0 # Install Angular CLI matching project version

- name: Ensure @angular-devkit/build-angular is installed
run: npm install --save-dev @angular-devkit/build-angular@^18.0.0 # Ensure necessary devkit is installed

- name: Build the project with Angular CLI
run: ng build --configuration development --verbose # Use verbose logging for better debugging info
run: ng build --configuration development --verbose # Using verbose logging for better debugging info

# Uncomment below section if Webpack is used for manual bundling
# - name: Build the project with Webpack
Expand Down

0 comments on commit 405a0d4

Please sign in to comment.