Skip to content

Commit 703dba0

Browse files
authored
Merge pull request #886 from mountebank-testing/windows-build-use-preinstalled-nvm
Use pre-installed nvm in Windows build rather than trying to install it
2 parents edf2ffe + 5c5f313 commit 703dba0

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,12 @@ jobs:
9595
- MB_SLOW_TEST_TIMEOUT: 10000
9696
steps:
9797
- checkout
98-
- run: choco install nodejs --version=18.11.0 -y
9998
- run: choco install wget -y
99+
- run:
100+
name: Install and use Node.js 18.11.0 with pre-installed nvm
101+
command: |
102+
nvm install 18.11.0
103+
nvm use 18.11.0
100104
- run:
101105
name: Verify versions
102106
command: |

0 commit comments

Comments
 (0)