[Ubuntu] Fix Netlify installation, move its and vercel's installation to Nodejs.sh (#2666)

* fix netlify installation

* debug

* resolve comments

* small fix
This commit is contained in:
Dibir Magomedsaygitov
2021-02-09 18:57:05 +03:00
committed by GitHub
parent 902346ebcd
commit 395127da8f
8 changed files with 10 additions and 48 deletions

View File

@@ -275,12 +275,6 @@ Describe "Conda" {
}
}
Describe "Netlify" {
It "netlify" {
"netlify --version" | Should -ReturnZeroExitCode
}
}
Describe "Packer" {
It "packer" {
"packer --version" | Should -ReturnZeroExitCode
@@ -322,7 +316,7 @@ Describe "Containers" -Skip:(Test-IsUbuntu16) {
}
Describe "Node.js" {
$testCases = @("node", "grunt", "gulp", "webpack", "parcel", "yarn", "newman") | ForEach-Object { @{NodeCommand = $_} }
$testCases = @("node", "grunt", "gulp", "webpack", "parcel", "yarn", "newman", "netlify", "vercel", "now") | ForEach-Object { @{NodeCommand = $_} }
It "<NodeCommand>" -TestCases $testCases {
param (
@@ -330,7 +324,7 @@ Describe "Node.js" {
)
"$NodeCommand --version" | Should -ReturnZeroExitCode
}
}
}
Describe "nvm" {