From 5a419f211adf4c3a941243c3c0a2eb2c1705a66a Mon Sep 17 00:00:00 2001 From: danbulant Date: Sun, 23 Jun 2019 11:01:18 +0200 Subject: [PATCH] Delete config.yml --- .circleci/config.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 3fb4cf9..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,35 +0,0 @@ -version: 2 -jobs: - build: - working_directory: ~ - docker: - - image: circleci/node:4.8.2 - steps: - - checkout - - run: - name: update-npm - command: 'sudo npm install -g npm@latest' - - restore_cache: - key: dependency-cache-{{ checksum "package.json" }} - - run: - name: install-npm-wee - command: npm install - - save_cache: - key: dependency-cache-{{ checksum "package.json" }} - paths: - - ./node_modules - - run: - name: test - command: npm test - - run: - name: code-coverage - command: './node_modules/.bin/nyc report --reporter=text-lcov' - - store_artifacts: - path: test-results.xml - prefix: tests - - store_artifacts: - path: coverage - prefix: coverage - - store_test_results: - path: test-results.xml -