mirror of
https://github.com/strapi/strapi.git
synced 2025-12-31 09:15:55 +00:00
9 lines
160 B
Bash
Executable File
9 lines
160 B
Bash
Executable File
# install global packages if set
|
|
if [[ -n "$GLOBAL_PACKAGES" ]]; then
|
|
yarn global add "$GLOBAL_PACKAGES"
|
|
yarn global bin >>$GITHUB_PATH
|
|
fi
|
|
|
|
# run yarn
|
|
yarn
|