From 2c11b64a21967d595d9a20a8f85360c22f68307f Mon Sep 17 00:00:00 2001
From: TimothyKeaveny <113555624+TimothyKeaveny@users.noreply.github.com>
Date: Tue, 28 Feb 2023 05:09:54 +0700
Subject: [PATCH] remove the 'npm build' step from the circleci config

---
 .circleci/config.yml | 17 +----------------
 1 file changed, 1 insertion(+), 16 deletions(-)

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: