diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 40b01b28..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,47 +0,0 @@ -# Javascript Node CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-javascript/ for more details -# -version: 2 -jobs: - build: - docker: - # specify the version you desire here - - image: circleci/node:lts - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - # - image: circleci/mongo:3.4.4 - - working_directory: ~/repo - - steps: - - checkout - - # Download and cache dependencies - - restore_cache: - keys: - - v1-dependencies-{{ checksum "yarn.lock" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- - - - run: - name: "Installing dependencies" - command: yarn install - - - save_cache: - paths: - - node_modules - key: v1-dependencies-{{ checksum "yarn.lock" }} - - # run tests! - - run: - name: Running tests - command: yarn circleci-test - - - store_test_results: - path: ./reports/junit - - - store_artifacts: - path: ./reports diff --git a/README.md b/README.md index 7daafdff..661298cd 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ -[![CircleCI](https://circleci.com/gh/NateRadebaugh/react-datetime.svg?style=svg)](https://circleci.com/gh/NateRadebaugh/react-datetime) [![Build Status](https://secure.travis-ci.org/NateRadebaugh/react-datetime.svg)](https://travis-ci.org/NateRadebaugh/react-datetime) [![npm version](https://badge.fury.io/js/%40nateradebaugh%2Freact-datetime.svg)](https://badge.fury.io/js/%40nateradebaugh%2Freact-datetime) diff --git a/package.json b/package.json index 469d16d7..eb211f76 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,6 @@ "test:coverage": "yarn test --coverage", "test:all": "echo 'Running tests...' && yarn bundlesize && yarn test:coverage && echo 'All tests passed! 🤘'", "test:watch": "cross-env TZ=Europe/Stockholm tsdx test --watch", - "circleci-test": "cross-env CI=1 TZ=Europe/Stockholm JEST_JUNIT_OUTPUT_DIR=reports/junit tsdx test --ci --reporters=default --reporters=jest-junit --runInBand", "lint": "yarn eslint src --ext .js,.ts,.jsx,.tsx", "lint:fix": "yarn lint --fix", "prettier": "prettier --write {src,scss}/*.{json,js,jsx,ts,tsx,scss} *.{json,js,md,mdx}",