From: fisker Cheung Date: Mon, 14 Oct 2019 18:51:39 +0000 (+0800) Subject: ci: add step name (#279) X-Git-Tag: v3.0.0-alpha.0~447 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0adcb5669271255d22597488c0af24788238da2;p=thirdparty%2Fvuejs%2Fcore.git ci: add step name (#279) --- diff --git a/.circleci/config.yml b/.circleci/config.yml index 7d41213f60..12109abcee 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,9 @@ jobs: - v1-dependencies-{{ checksum "yarn.lock" }} - v1-dependencies- - - run: yarn --frozen-lockfile + - run: + name: Installing Dependencies + command: yarn --frozen-lockfile - save_cache: paths: @@ -22,4 +24,6 @@ jobs: - ~/.cache/yarn key: v1-dependencies-{{ checksum "yarn.lock" }} - - run: yarn test --ci --runInBand + - run: + name: Running Tests + command: yarn test --ci --runInBand