From 7e6c8b3458c16c89d538d4677625893caceb850d Mon Sep 17 00:00:00 2001 From: ringeringeraja Date: Thu, 7 Mar 2024 17:04:13 -0300 Subject: [PATCH] ci: fix build --- .github/workflows/ci.yaml | 5 ++++- api/package.json | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8a118c3..2be8b6b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,4 +19,7 @@ jobs: - name: Install dependencies run: npm install - name: Build packages - run: npm --workspaces run build + run: | + npm --workspace=api run build + npm --workspace=api run build:icons + npm --workspace=web run build diff --git a/api/package.json b/api/package.json index 5926aed..581306f 100644 --- a/api/package.json +++ b/api/package.json @@ -6,6 +6,7 @@ "types": "src/index.ts", "scripts": { "build": "aeria -c", + "build:icons": "aeria -i", "build:post": "aeria -mi", "dev": "aeria -w", "start": "node -r aeria/loader ./release/index.js"