mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
* add tests for cli tools to pester * small fix * remove extra commenting * resolve issues * fix vercel test * remove extra logging
15 lines
461 B
Bash
15 lines
461 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: vercel.sh
|
|
## Desc: Installs the Vercel CLI
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/invoke-tests.sh
|
|
|
|
# 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" |