We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0a397bb + 926798b commit aead278Copy full SHA for aead278
.circleci/config.yml
@@ -287,6 +287,9 @@ jobs:
287
- checkout
288
- restore_cache:
289
key: test-node-modules-{{ checksum "package-lock.json" }}
290
+ - run:
291
+ name: Config Git
292
+ command: git config --global url."https://git@".insteadOf git://
293
- run:
294
name: App npm install
295
command: npm install
Dockerfile
@@ -147,6 +147,7 @@ ENV OPTIMIZELY_SDK_KEY=$OPTIMIZELY_SDK_KEY
147
# Testing and build of the application inside the container.
148
149
RUN npm config set unsafe-perm true
150
+RUN git config --global url."https://git@".insteadOf git://
151
RUN npm install
152
RUN npm test
153
RUN npm run build
0 commit comments