From ec57d36056b0d641b416124d8b76cd689a21e598 Mon Sep 17 00:00:00 2001 From: Nicolas Beaussart Date: Thu, 26 Mar 2020 18:21:08 +0100 Subject: [PATCH] :green_heart: add retry to ci --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a44a17b..6d1ed9c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,4 +1,6 @@ version: 2.1 +orbs: + run-with-retry: kimh/run-with-retry@1.0.0 commands: setup_deps: description: 'Setup cache and do a yarn install' @@ -20,8 +22,8 @@ jobs: - setup_deps - run: ./bin/run --version - run: ./bin/run --help - - run: - name: Testing + - run-with-retry/run-with-retry: + sleep: 2 command: yarn test --ci - run: name: Sending to codecov