Add build deps for data-plugin in CI

This commit is contained in:
Hien To 2023-10-26 21:29:38 +07:00
parent a0b0d37542
commit cf9b51a76b

View File

@ -88,7 +88,11 @@ jobs:
do
echo $dir
cd $dir
npm install && npm run postinstall && ../../.github/scripts/auto-sign.sh
npm install
if [[ $dir == 'data-plugin' ]]; then
npm run build:deps
fi
npm run postinstall && ../../.github/scripts/auto-sign.sh
if [[ $GITHUB_EVENT_NAME == 'push' && $GITHUB_EVENT_PULL_REQUEST_HEAD_REPO_FULL_NAME != $GITHUB_REPOSITORY ]]; then
npm publish --access public
fi