File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
redisinsight/desktop/src/lib/server Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,11 @@ jobs:
410
410
- checkout
411
411
- attach_workspace :
412
412
at : .
413
- - run : choco install nodejs --version=18.15.0
413
+ - run :
414
+ command : |
415
+ nvm install 18.15.0
416
+ nvm use 18.15.0
417
+ npm install --global yarn
414
418
- run :
415
419
command : |
416
420
cd tests/e2e && export TEST_FILES=$(circleci tests glob "tests/electron/**/*.e2e.ts" | circleci tests split --split-by=timings) && cd ../..
@@ -755,7 +759,10 @@ jobs:
755
759
- run :
756
760
name : Build windows exe
757
761
command : |
758
- choco install nodejs --version=18.15.0
762
+ nvm install 18.15.0
763
+ nvm use 18.15.0
764
+ npm install --global yarn
765
+
759
766
# set ALL_REDIS_COMMANDS=$(curl $ALL_REDIS_COMMANDS_RAW_URL)
760
767
yarn install
761
768
yarn --cwd redisinsight/api/ install
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ let beApp: any
24
24
export const launchApiServer = async ( ) => {
25
25
try {
26
26
const detectPortConst = await getPort ( { port : portNumbers ( port , port + 1_000 ) } )
27
- process . env . API_PORT = detectPortConst ?. toString ( )
27
+ process . env . RI_APP_PORT = detectPortConst ?. toString ( )
28
28
29
29
if ( process . env . APPIMAGE ) {
30
30
process . env . BUILD_PACKAGE = 'appimage'
You can’t perform that action at this time.
0 commit comments