Skip to content

Commit eab5331

Browse files
Copilotmmcky
andcommitted
Use apt to install Node.js and npm instead of conda-forge
Co-authored-by: mmcky <[email protected]>
1 parent 3d779d6 commit eab5331

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ jobs:
8181
- name: Install Node.js and Netlify CLI
8282
shell: bash -l {0}
8383
run: |
84-
conda install -c conda-forge nodejs npm -y
84+
# Install Node.js via system package manager since conda-forge doesn't have npm
85+
sudo apt-get update
86+
sudo apt-get install -y nodejs npm
8587
npm install -g netlify-cli
8688
- name: Preview Deploy to Netlify
8789
shell: bash -l {0}

0 commit comments

Comments
 (0)