chore: update GitHub Actions workflow to install and build data-provider and client dependencies

This commit is contained in:
Danny Avila 2025-07-16 09:30:47 -04:00 committed by Marco Beretta
parent f741a59ec4
commit 86deb4d19a
No known key found for this signature in database
GPG key ID: D918033D8E74CC11

View file

@ -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