UNPKG

clever

Version:

Node.js library for interacting with the Clever API

25 lines (23 loc) 792 B
version: 2 jobs: build: working_directory: ~/Clever/clever-js docker: - image: circleci/node:12-stretch environment: CIRCLE_ARTIFACTS: /tmp/circleci-artifacts CIRCLE_TEST_REPORTS: /tmp/circleci-test-results steps: - run: command: cd $HOME && git clone --depth 1 -v https://github.com/Clever/ci-scripts.git && cd ci-scripts && git show --oneline -s name: Clone ci-scripts - checkout - setup_remote_docker - run: command: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS name: Set up CircleCI artifacts directories - run: command: npm install name: npm install - run: npm test - run: if [ "${CIRCLE_BRANCH}" == "master" ]; then $HOME/ci-scripts/circleci/npm-publish $NPM_TOKEN .; fi;