File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,12 @@ jobs:
137
137
- uses : actions/setup-node@v2
138
138
with :
139
139
node-version : 16
140
+ - name : Ensure docker-compose exists and has correct permissions
141
+ run : |
142
+ sudo touch /usr/bin/docker-compose
143
+ sudo chmod 755 /usr/bin/docker-compose
144
+ sudo apt-get update && apt-get install gnupg wget -y && wget --quiet --output-document=- https://dl-ssl.google.com/linux/linux_signing_key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/google-archive.gpg && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && apt-get update && apt-get install google-chrome-stable -y --no-install-recommends && rm -rf /var/lib/apt/lists/*
145
+
140
146
141
147
- name : Restore Lerna
142
148
id : yarn-cache
@@ -174,11 +180,7 @@ jobs:
174
180
run : |
175
181
yarn workspace @telekom/scale-visual-tests copy
176
182
177
- - name : Ensure docker-compose exists and has correct permissions
178
- run : |
179
- sudo touch /usr/bin/docker-compose
180
- docker -v
181
-
183
+
182
184
- name : Run visual tests
183
185
id : visual-tests
184
186
You can’t perform that action at this time.
0 commit comments