From afbf738d3fa4b434848c3b7a9d293124012c5b4d Mon Sep 17 00:00:00 2001 From: ringeringeraja Date: Wed, 12 Jun 2024 13:18:35 -0300 Subject: [PATCH] ci: fix build --- .github/workflows/ci.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3b88eab..368b167 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,6 +20,7 @@ jobs: run: npm install - name: Build packages run: | - npm --workspace=api run build - npm --workspace=api run build:icons - npm --workspace=web run build:ci + (cd api; npm run build) + (cd api; npm run build:icons) + (cd web; npm run build:ci) +