File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -122,13 +122,21 @@ jobs:
122
122
- equal : [*windows-e2e-executor, << parameters.os >>]
123
123
steps :
124
124
- 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
127
132
- run :
128
133
name : Install Yarn
129
134
command : |
130
135
npm install -g yarn
131
136
yarn --version
137
+ - run :
138
+ name : Check node version
139
+ command : node -v
132
140
- run : yarn config set workspaces-experimental true
133
141
- run : yarn cache clean --force
134
142
- run : yarn run production-build
Original file line number Diff line number Diff line change @@ -121,13 +121,21 @@ jobs:
121
121
- << parameters.os >>
122
122
steps :
123
123
- 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
126
131
- run :
127
132
name : Install Yarn
128
133
command : |
129
134
npm install -g yarn
130
135
yarn --version
136
+ - run :
137
+ name : Check node version
138
+ command : node -v
131
139
- run : yarn config set workspaces-experimental true
132
140
- run : yarn cache clean --force
133
141
- run : yarn run production-build
You can’t perform that action at this time.
0 commit comments