Skip to content

Commit

Permalink
Fix NodeJS CI npm command
Browse files Browse the repository at this point in the history
  • Loading branch information
simonprev committed Feb 15, 2024
1 parent b119d1b commit d8e3a70
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,13 @@ jobs:
- name: Install NodeJS Dependencies
run: |
npm config set spin false
npm ci --no-audit --no-color
npm ci --prefix webapp --no-audit --no-color
npm ci --prefix cli --no-audit --no-color
npm ci --prefix jipt --no-audit --no-color
npm set fund false
npm set audit false
npm set color false
npm ci
npm ci --prefix webapp
npm ci --prefix cli
npm ci --prefix jipt
- name: Build webapp production
run: npm run build-production-inline --prefix webapp
Expand Down

0 comments on commit d8e3a70

Please sign in to comment.