File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed
Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 77 NVM_INSTALL_VERSION : ${{ github.sha }}
88
99jobs :
10- node_fail_install :
10+ msys_fail_install :
1111 # Default installation does not work due to npm_config_prefix set to C:\npm\prefix
1212 name : ' MSYS fail prefix nvm install'
1313 runs-on : windows-latest
1818 curl -fsSLo- "https://raw.githubusercontent.com/${NVM_INSTALL_GITHUB_REPO}/${NVM_INSTALL_VERSION}/install.sh" | METHOD=script bash
1919 . "$HOME/.nvm/nvm.sh"
2020 ! nvm install --lts
21- nodes :
21+
22+ msys_matrix :
2223 name : ' MSYS nvm install'
2324 runs-on : windows-latest
2425 strategy :
3940 fi
4041 . "$HOME/.nvm/nvm.sh"
4142 nvm install ${{ matrix.npm-node-version }}
42- node_cygwin :
43+
44+ cygwin_matrix :
4345 name : ' Cygwin nvm install'
4446 runs-on : windows-latest
4547 steps :
7577 run : |
7678 cd %USERPROFILE%\cygwin\bin
7779 bash.exe "%USERPROFILE%\setup.sh"
78- wsl_nodes :
80+
81+ wsl_matrix :
7982 name : ' WSL nvm install'
8083 runs-on : windows-latest
8184 env :
@@ -104,3 +107,9 @@ jobs:
104107 fi
105108 . "$HOME/.nvm/nvm.sh"
106109 nvm install ${{ matrix.npm-node-version }}
110+
111+ nvm_windows :
112+ needs : [wsl_matrix, cygwin_matrix, msys_matrix, msys_fail_install]
113+ runs-on : ubuntu-latest
114+ steps :
115+ - run : ' echo tests completed'
You can’t perform that action at this time.
0 commit comments