From cf9b51a76bf08d4bdd61dd313aa1925bcb71ae32 Mon Sep 17 00:00:00 2001 From: Hien To Date: Thu, 26 Oct 2023 21:29:38 +0700 Subject: [PATCH] Add build deps for data-plugin in CI --- .github/workflows/jan-plugins.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/jan-plugins.yml b/.github/workflows/jan-plugins.yml index 4b36bdead..5f36edf17 100644 --- a/.github/workflows/jan-plugins.yml +++ b/.github/workflows/jan-plugins.yml @@ -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