File tree 1 file changed +13
-4
lines changed
1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 7
7
NVM_INSTALL_VERSION : ${{ github.sha }}
8
8
9
9
jobs :
10
- node_fail_install :
10
+ msys_fail_install :
11
11
# Default installation does not work due to npm_config_prefix set to C:\npm\prefix
12
12
name : ' MSYS fail prefix nvm install'
13
13
runs-on : windows-latest
18
18
curl -fsSLo- "https://raw.githubusercontent.com/${NVM_INSTALL_GITHUB_REPO}/${NVM_INSTALL_VERSION}/install.sh" | METHOD=script bash
19
19
. "$HOME/.nvm/nvm.sh"
20
20
! nvm install --lts
21
- nodes :
21
+
22
+ msys_matrix :
22
23
name : ' MSYS nvm install'
23
24
runs-on : windows-latest
24
25
strategy :
39
40
fi
40
41
. "$HOME/.nvm/nvm.sh"
41
42
nvm install ${{ matrix.npm-node-version }}
42
- node_cygwin :
43
+
44
+ cygwin_matrix :
43
45
name : ' Cygwin nvm install'
44
46
runs-on : windows-latest
45
47
steps :
75
77
run : |
76
78
cd %USERPROFILE%\cygwin\bin
77
79
bash.exe "%USERPROFILE%\setup.sh"
78
- wsl_nodes :
80
+
81
+ wsl_matrix :
79
82
name : ' WSL nvm install'
80
83
runs-on : windows-latest
81
84
env :
@@ -104,3 +107,9 @@ jobs:
104
107
fi
105
108
. "$HOME/.nvm/nvm.sh"
106
109
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