From 6d21fdb736b4a71977c7348dce2f418e87e0db07 Mon Sep 17 00:00:00 2001 From: Matthias Van Parijs Date: Sat, 12 Oct 2024 19:38:06 +0200 Subject: [PATCH] chore: Build everything, not only dashboard --- .github/workflows/{build-dashboard.yml => build.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{build-dashboard.yml => build.yml} (84%) diff --git a/.github/workflows/build-dashboard.yml b/.github/workflows/build.yml similarity index 84% rename from .github/workflows/build-dashboard.yml rename to .github/workflows/build.yml index 159bf504..99713c9b 100644 --- a/.github/workflows/build-dashboard.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build dashboard +name: Build on: push: @@ -17,12 +17,12 @@ jobs: with: node-version: 20 cache: pnpm + - name: Setup bun + uses: oven-sh/setup-bun@v2 - name: Install dependencies run: pnpm install - name: Build env: PUBLIC_API_ENDPOINT: http://api PUBLIC_STITCHER_ENDPOINT: http://stitcher - run: | - cd ./packages/dashboard - pnpm build + run: pnpm build