diff --git a/.circleci/config.yml b/.circleci/config.yml index 4e9096d..b50dfa2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,16 +3,13 @@ version: 2.1 defaults: &defaults working_directory: ~/segmented-arc-for-react-native docker: - - image: cimg/node:14.17.6 + - image: cimg/node:18.15.0 yarn_install: &yarn_install run: name: Install yarn command: yarn install --frozen-lockfile -orbs: - codecov: codecov/codecov@3.2.2 - jobs: test: <<: *defaults @@ -33,14 +30,7 @@ jobs: name: Run unit tests command: | yarn test:coverage - environment: - JEST_JUNIT_OUTPUT_DIR: ./reports/junit/ - - store_test_results: - path: ./reports/junit/ - - store_artifacts: - path: ./reports/junit/ - - codecov/upload: - file: ./coverage/coverage-final.json + deploy: <<: *defaults steps: