]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
ci: add step name (#279)
authorfisker Cheung <lionkay@gmail.com>
Mon, 14 Oct 2019 18:51:39 +0000 (02:51 +0800)
committerEvan You <yyx990803@gmail.com>
Mon, 14 Oct 2019 18:51:39 +0000 (14:51 -0400)
.circleci/config.yml

index 7d41213f60375b3579fb47079fafb69426b1f706..12109abcee18058bdf686c2ca7682e3b3de81157 100644 (file)
@@ -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