From cd3b212bab86126f375b17480e9f9d18c232c26b Mon Sep 17 00:00:00 2001 From: Arno V Date: Mon, 18 Mar 2024 11:57:02 -0400 Subject: [PATCH] chore: reducing time to deploy but limiting build scope (#431) ## Summary by CodeRabbit - **Chores** - Updated the deployment workflow to exclude certain packages from the build process, enhancing efficiency. --- .github/workflows/deploy-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 57b0e7d9..b4683f19 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -39,7 +39,7 @@ jobs: - run: | corepack enable pnpm install - npx lerna run build --ignore @versini/documentation + npx lerna run build --ignore "@versini/example-*" --ignore @versini/documentation --ignore @versini/bundlesize npx lerna run build:ci --scope=@versini/documentation - name: Setup Pages if: ${{ always() }}