From f5b82bca1576653e71b95dd1dab3c4feeafa37ef Mon Sep 17 00:00:00 2001 From: dal Date: Mon, 21 Jul 2025 01:15:01 -0600 Subject: [PATCH] exclude web for now --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f0427f98..ea2e63c54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,11 +57,11 @@ jobs: env: NODE_ENV: production - - name: Lint all packages - run: pnpm lint + - name: Lint all packages (excluding web) + run: pnpm lint --filter='!@buster-app/web' - - name: Run all unit tests - run: pnpm test:unit + - name: Run all unit tests (excluding web) + run: pnpm test:unit --filter='!@buster-app/web' - name: Upload test coverage uses: actions/upload-artifact@v4