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