Skip to content

Commit

Permalink
Merge pull request #1 from Andrews-McMeel-Universal/bug/DEVOPS-600/sw…
Browse files Browse the repository at this point in the history
…itch-to-yarn-for-package-installs

[DEVOPS-600] Use `yarn` for package installs
  • Loading branch information
ebronson68 authored Dec 9, 2024
2 parents d057cef + 5ab4691 commit 988c1a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ esac

case $INPUT_PRETTIER_VERSION in
false)
npm install --silent prettier
yarn add --silent prettier
;;
*)
npm install --silent prettier@$INPUT_PRETTIER_VERSION
yarn add --silent prettier@$INPUT_PRETTIER_VERSION
;;
esac

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

Expand Down

0 comments on commit 988c1a8

Please sign in to comment.