diff --git a/.circleci/config.yml b/.circleci/config.yml
index 3b26b65..3c41c4d 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -33,14 +33,8 @@ commands:
       - run:
           name: Test
           command: |
-            npm run build
             npm run test
-  deploy:
-    steps:
-      - run:
-          name: Deploy
-          command: |
-            npm run semantic-release
+
 jobs:
   build-and-test:
     executor: default-executor
@@ -50,15 +44,6 @@ jobs:
       - setup
       - save_test_cache
       - test
-      - persist_to_workspace:
-          root: ~/project
-          paths: .
-  deploy:
-    executor: default-executor
-    steps:
-      - attach_workspace:
-          at: ~/project
-      - deploy
 
 workflows:
   build-and-test-workflow: