File tree 1 file changed +16
-8
lines changed
1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,8 @@ jobs:
105
105
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
106
106
sudo apt-get update
107
107
sudo apt-get -y install helm
108
+ which helm
109
+ helm version
108
110
109
111
- name : WSL Install Kind
110
112
if : ${{ runner.os == 'Windows' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
@@ -113,20 +115,15 @@ jobs:
113
115
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-amd64
114
116
chmod +x ./kind
115
117
sudo mv ./kind /usr/local/bin/kind
118
+ which kind
119
+ kind version
116
120
117
- - name : WSL Install NodeJS
118
- if : ${{ runner.os == 'Windows' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
119
- shell : wsl-bash {0}
120
- run : |
121
- sudo apt update
122
- sudo apt -y install nodejs npm
123
- node -v
124
121
125
122
- name : WSL Install Docker
126
123
if : ${{ runner.os == 'Windows' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
127
124
shell : wsl-bash {0}
128
125
run : |
129
-
126
+
130
127
sudo apt-get update
131
128
sudo apt-get install ca-certificates curl
132
129
sudo install -m 0755 -d /etc/apt/keyrings
@@ -143,6 +140,17 @@ jobs:
143
140
sudo apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
144
141
sudo docker run hello-world
145
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
+
152
+
153
+
146
154
- name : Setup Node
147
155
uses : actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
148
156
with :
You can’t perform that action at this time.
0 commit comments