mirror of
https://github.com/strapi/strapi.git
synced 2026-01-01 17:54:44 +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
|