Skip to content

Commit

Permalink
Fix builds: Stop re-installing npm (GladysAssistant#2195)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Gilles authored Jan 9, 2025
1 parent f961aef commit e9b3211
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-master-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'
- name: 📦 Install Global NPM Packages
run: |
sudo npm install typescript node-gyp npm@latest -g
sudo npm install typescript node-gyp -g
- name: 📦 Install NPM front packages
working-directory: ./front
run: |
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
sudo apt-get install -y libudev-dev sqlite3 openssl python-is-python3
- name: 📦 Install Global NPM Packages
run: |
sudo npm install typescript node-gyp npm@latest -g
sudo npm install typescript node-gyp -g
- name: 📦 Install NPM server packages
working-directory: ./server
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'
- name: 📦 Install Global NPM Packages
run: |
sudo npm install typescript node-gyp npm@latest -g
sudo npm install typescript node-gyp -g
- name: 📦 Install NPM front packages
working-directory: ./front
run: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
sudo apt-get install -y libudev-dev sqlite3 openssl python-is-python3
- name: 📦 Install Global NPM Packages
run: |
sudo npm install typescript node-gyp npm@latest -g
sudo npm install typescript node-gyp -g
- name: 📦 Install NPM server packages
working-directory: ./server
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache-dependency-path: '**/package-lock.json'
- name: 📦 Install Global NPM Packages
run: |
sudo npm install typescript node-gyp npm@latest -g
sudo npm install typescript node-gyp -g
- name: 📦 Install NPM front packages
working-directory: ./front
run: |
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
sudo apt-get install -y libudev-dev sqlite3 openssl python-is-python3
- name: 📦 Install Global NPM Packages
run: |
sudo npm install typescript node-gyp npm@latest -g
sudo npm install typescript node-gyp -g
- name: 📦 Install NPM server packages
working-directory: ./server
run: |
Expand Down

0 comments on commit e9b3211

Please sign in to comment.