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

Fix builds: Stop re-installing npm #2195

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
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
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
Loading