actions/setup-node v4

This commit is contained in:
orchestron-bot
2026-06-11 00:39:48 +08:00
commit 58e87d5525
1116 changed files with 209801 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/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