File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,15 @@ jobs:
140
140
# sudo systemctl start docker
141
141
sudo usermod -aG docker $(whoami)
142
142
143
+ - name : WSL Install NodeJS
144
+ if : ${{ runner.os == 'Windows' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
145
+ shell : wsl-bash {0}
146
+ run : |
147
+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
148
+ nvm install node
149
+ node -v
150
+ npm -v
151
+
143
152
- name : WSL Run Docker
144
153
if : ${{ runner.os == 'Windows' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
145
154
shell : wsl-bash {0}
@@ -151,14 +160,6 @@ jobs:
151
160
sudo docker version
152
161
sudo docker -D run hello-world
153
162
154
- - name : WSL Install NodeJS
155
- if : ${{ runner.os == 'Windows' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
156
- shell : wsl-bash {0}
157
- run : |
158
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
159
- nvm install node
160
- node -v
161
- npm -v
162
163
163
164
164
165
You can’t perform that action at this time.
0 commit comments