mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-19 21:04:45 +00:00
follow proxy settings
This commit is contained in:
parent
9a99bb3e35
commit
64609a2cc7
2 changed files with 57 additions and 14 deletions
15
__tests__/verify-node-version.sh
Executable file
15
__tests__/verify-node-version.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Must supply version argument"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
node_version="$(node --version)"
|
||||
echo "Found node version '$node_version'"
|
||||
if [[ $node_version =~ "v$1" ]]; then
|
||||
echo "Success. Version matches 'v$1'"
|
||||
else
|
||||
echo "Unexpected version"
|
||||
exit 1
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue