Skip to content

Commit 5bbc622

Browse files
committed
fix(ci): select all versions in nvm migration test
The nvm migration test was selecting option "1" which picked up the pre-installed system Node.js instead of the nvm-installed version. Change to "all" so both system and nvm versions get migrated, then verify that the nvm version (20.18.0) is among the migrated versions.
1 parent 0c375dc commit 5bbc622

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/integration-test-migrate-node-ubuntu-nvm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jobs:
4747
- name: "Migrate nvm Node.js to dtvem"
4848
run: |
4949
echo "=== Running migrate detection ==="
50-
echo -e "1\n0\nn\n" | ./dist/dtvem migrate node || true
50+
# Select "all" to migrate all detected versions (system + nvm)
51+
echo -e "all\n0\nn\n" | ./dist/dtvem migrate node || true
5152
echo ""
5253
echo "=== Verifying migration ==="
5354
./dist/dtvem list node

0 commit comments

Comments
 (0)