From d7726c321becba9178ebcc8c989f098fd8ff7fcf Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Wed, 17 Jul 2024 21:30:37 -0400 Subject: [PATCH] Use --if-present --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index ff212ef1..5a390e17 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -20,6 +20,6 @@ jobs: - name: Install run: npm ci - name: Bundle size - run: npm run bundlesize -w=packages/core + run: npm run bundlesize --workspaces --if-present - name: Test - run: npm run test --workspaces + run: npm run test --workspaces --if-present