Don't install plugins globally

This fixes a problem where @prettier/plugin-ruby was not being used.
This commit is contained in:
Tim Morgan
2022-01-08 12:37:59 -06:00
parent 661230a857
commit 8a16fc9688

View File

@@ -64,7 +64,7 @@ if [ -n "$INPUT_PRETTIER_PLUGINS" ]; then
exit 1
fi
done
npm install --silent --global $INPUT_PRETTIER_PLUGINS
npm install --silent $INPUT_PRETTIER_PLUGINS
fi
)