mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2026-09-16 13:49:05 +02:00
11 lines
No EOL
249 B
Shell
11 lines
No EOL
249 B
Shell
#!/bin/sh
|
|
|
|
if [ -n "$1" ]; then
|
|
architecture="$(node -e 'console.log(process.arch)')"
|
|
if [ -z "$(echo $architecture | grep --fixed-strings $1)" ]; then
|
|
echo "Unexpected architecture"
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "Skip testing architecture"
|
|
fi |