diff --git a/Jenkinsfile b/Jenkinsfile
index 44a6876..1c02c20 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -13,17 +13,18 @@ pipeline {
                 
                 withEnv(['CI=false']) {     //ignore warning
                     bat 'npm install'
-                    bat 'npm i -g firebase-tools -f' // force install
-                    bat 'npm run build'
+                    // bat 'npm i -g firebase-tools -f'
+                    // bat 'npm run build'
+                    bat 'npm run start'
                 }    
 
-                bat '''
-                    echo "${FIREBASE_TOKEN}"
-                    npx firebase login --interactive --token "${FIREBASE_TOKEN}"
-                    npx firebase init
-                    echo %cd%
-                    dir
-                '''
+                // bat '''
+                //     echo "${FIREBASE_TOKEN}"
+                //    npx firebase login --interactive --token "${FIREBASE_TOKEN}"
+                //    npx firebase init
+                //    echo %cd%
+                //    dir
+                // '''
             }
         }
         stage("Deploy React App") {