We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d779d6 commit eab5331Copy full SHA for eab5331
.github/workflows/ci.yml
@@ -81,7 +81,9 @@ jobs:
81
- name: Install Node.js and Netlify CLI
82
shell: bash -l {0}
83
run: |
84
- conda install -c conda-forge nodejs npm -y
+ # 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
87
npm install -g netlify-cli
88
- name: Preview Deploy to Netlify
89
0 commit comments