From a68098e7e28c9979243af38874f39d00afdb092b Mon Sep 17 00:00:00 2001 From: Jugger Date: Sat, 1 Oct 2022 13:33:29 -0500 Subject: [PATCH] ci: use yarn instead npm --- ecosystem.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecosystem.config.js b/ecosystem.config.js index ea152d2..dcc646b 100644 --- a/ecosystem.config.js +++ b/ecosystem.config.js @@ -19,7 +19,7 @@ module.exports = { ref: 'origin/main', repo: 'https://github.com/SrJuggernaut/entgamers_pro', path: process.env.DEPLOY_PATH, - 'pre-deploy': 'npm install && npm run build', + 'pre-deploy': 'yarn install && yarn run build', 'post-deploy': 'pm2 startOrRestart ecosystem.config.js', env: { APP_NAME: process.env.APP_NAME, @@ -34,7 +34,7 @@ module.exports = { ref: 'origin/preview', repo: 'https://github.com/SrJuggernaut/entgamers_pro', path: process.env.DEPLOY_PATH, - 'pre-deploy': 'npm install && npm run build', + 'pre-deploy': 'yarn install && yarn run build', 'post-deploy': 'pm2 startOrRestart ecosystem.config.js', env: { APP_NAME: process.env.APP_NAME,