From 86deb4d19aaacd90ec8c320842a786d783735499 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Wed, 16 Jul 2025 09:30:47 -0400 Subject: [PATCH] chore: update GitHub Actions workflow to install and build data-provider and client dependencies --- .github/workflows/client.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 87ee83607b..62fdb78df6 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -24,10 +24,16 @@ jobs: with: node-version: '20.x' - - name: Install dependencies + - name: Install data-provider dependencies + run: cd packages/data-provider && npm ci + + - name: Build data-provider + run: cd packages/data-provider && npm run build + + - name: Install client dependencies run: cd packages/client && npm ci - - name: Build + - name: Build client run: cd packages/client && npm run build - name: Set up npm authentication