mirror of
https://github.com/actions/runner-images.git
synced 2025-12-17 23:28:57 +00:00
* add missing tests * fix naming and nvm test * fix containers test and bring pwsh test back * remove pwsh test * small fix
13 lines
421 B
Bash
13 lines
421 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: vercel.sh
|
|
## Desc: Installs the Vercel CLI
|
|
################################################################################
|
|
|
|
# Install the Vercel CLI
|
|
npm i -g vercel
|
|
|
|
echo "Creating the symlink for [now] command to vercel CLI"
|
|
ln -s /usr/local/bin/vercel /usr/local/bin/now
|
|
|
|
invoke_tests "CLI.Tools" "Vercel CLI" |