From 6b159eca2fea4872913faf3d720b876f1f02dd96 Mon Sep 17 00:00:00 2001 From: mmiller Date: Sat, 22 Jul 2017 18:26:05 -0600 Subject: [PATCH] Naming steps --- .circleci/config.yml | 16 ++++++++++++---- .gitignore | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 51e5f5f..8398c06 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,13 +7,21 @@ jobs: steps: - checkout - - run: sudo npm install -g npm@latest + - run: + name: update-npm + command: sudo npm install -g npm@latest - restore_cache: key: dependency-cache-{{ checksum "package.json" }} - - run: npm install + - run: + name: npm-install + command: npm install - save_cache: key: dependency-cache-{{ checksum "package.json" }} paths: - node_modules - - run: npm test - - deploy: if [ "${CIRCLE_TAG}" == v* ]; then npm publish; fi + - run: + name: npm-test + command: npm test + - deploy: + name: npm-publish + command: if [ "${CIRCLE_TAG}" == v* ]; then npm publish; fi diff --git a/.gitignore b/.gitignore index 82186d1..ccb5c1d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,7 @@ # Dependencies node_modules - +˚ # Logs *.log .node_repl_history