Skip to content

Commit 41f0554

Browse files
author
Rastusik
committed
fix(ci): installing git and openssh client in ci jobs
1 parent 7a00069 commit 41f0554

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ jobs:
114114
docker:
115115
- image: koalaman/shellcheck-alpine:stable
116116
steps:
117+
- run:
118+
name: Install git and openssh-client
119+
command: apk add --no-cache git openssh-client
117120
- checkout
118121
- run:
119122
name: Shellcheck sh scripts
@@ -123,10 +126,10 @@ jobs:
123126
docker:
124127
- image: node:lts-alpine
125128
steps:
126-
- checkout
127129
- run:
128130
name: Install git
129-
command: apk add --no-cache git
131+
command: apk add --no-cache git openssh-client
132+
- checkout
130133
- run:
131134
name: Install commitlint
132135
command: |-

0 commit comments

Comments
 (0)