Skip to content

Commit 74d288e

Browse files
committed
chore: update node install on windows
1 parent 4d52080 commit 74d288e

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

.circleci/config.base.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,21 @@ jobs:
122122
- equal: [*windows-e2e-executor, << parameters.os >>]
123123
steps:
124124
- checkout
125-
- run: nvm install 18.15.0
126-
- run: nvm alias default 18.15.0
125+
- run:
126+
name: Install Node 18
127+
command: |
128+
nvm version
129+
nvm install 18.15.0
130+
nvm use 18.15.0
131+
nvm ls
127132
- run:
128133
name: Install Yarn
129134
command: |
130135
npm install -g yarn
131136
yarn --version
137+
- run:
138+
name: Check node version
139+
command: node -v
132140
- run: yarn config set workspaces-experimental true
133141
- run: yarn cache clean --force
134142
- run: yarn run production-build

.circleci/config.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,21 @@ jobs:
121121
- << parameters.os >>
122122
steps:
123123
- checkout
124-
- run: nvm install 18.15.0
125-
- run: nvm alias default 18.15.0
124+
- run:
125+
name: Install Node 18
126+
command: |
127+
nvm version
128+
nvm install 18.15.0
129+
nvm use 18.15.0
130+
nvm ls
126131
- run:
127132
name: Install Yarn
128133
command: |
129134
npm install -g yarn
130135
yarn --version
136+
- run:
137+
name: Check node version
138+
command: node -v
131139
- run: yarn config set workspaces-experimental true
132140
- run: yarn cache clean --force
133141
- run: yarn run production-build

0 commit comments

Comments
 (0)