From 08869fe5da685f69d5862f50e1db738b21aa11ce Mon Sep 17 00:00:00 2001 From: killer-cf Date: Wed, 26 Nov 2025 10:42:41 -0300 Subject: [PATCH] feat: add Bun setup step to deploy workflow - Introduced a new step to set up Bun in the GitHub Actions deploy workflow, enhancing the build process for JavaScript applications. --- .github/workflows/deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ff88ef6..6e33c45 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,6 +11,10 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 + + - name: Setup Bun + uses: oven-sh/setup-bun@v2 + - name: Log in to Docker Hub uses: docker/login-action@v2