File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -147,14 +147,32 @@ jobs:
147147 # Install Node.js:
148148 - name : ' Install Node.js'
149149 run : |
150+ echo 'Cloning NVS...'
150151 git clone https://github.com/jasongin/nvs "${{ env.NVS_HOME }}"
152+ echo ''
153+ echo 'Running NVS installation script...'
151154 . "${{ env.NVS_HOME }}/nvs.sh" install
155+ echo ''
156+ echo "Installing Node.js version ${{ matrix.NODE_VERSION }}..."
152157 nvs add ${{ matrix.NODE_VERSION }}
158+ echo ''
159+ echo 'Setting Node.js default executable...'
153160 nvs link ${{ matrix.NODE_VERSION }}
161+ echo ''
162+ echo "Activating Node.js version ${{matrix.NODE_VERSION }}..."
154163 nvs use ${{ matrix.NODE_VERSION }}
164+ echo ''
165+ echo 'Adding executable to PATH...'
155166 cygpath -u $(nvs which ${{ matrix.NODE_VERSION }}) >> $PATH
167+ echo ''
168+ echo 'PATH:'
169+ echo $PATH
170+ echo ''
171+ echo 'Creating .bash_profile...'
156172 touch $HOME/.bash_profile
157173 echo "if [ -f $HOME/.bashrc ]; then . ~/.bashrc; fi" >> $HOME/.bash_profile
174+ echo ''
175+ echo 'Creating .bashrc...'
158176 touch $HOME/.bashrc
159177 echo ". ${{ env.NVS_HOME }}/nvs.sh" >> $HOME/.bashrc
160178 timeout-minutes : 15
You can’t perform that action at this time.
0 commit comments