mirror of
https://github.com/actions/setup-node
synced 2025-04-22 08:12:07 +00:00
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/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 [ -z "$(echo $node_version | grep v$1)" ]; then
|
|
echo "Unexpected version"
|
|
exit 1
|
|
fi |