From ba6f59c4c8e2b41a0721314438d39248fd1b25dc Mon Sep 17 00:00:00 2001 From: Alejandro Rosales Date: Fri, 28 Nov 2025 10:22:33 -0600 Subject: [PATCH] Refactor deployment workflow to use Bun instead of Node.js --- .gitea/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 2044e1c..90138c6 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -14,18 +14,18 @@ jobs: uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@v4 + uses: oven-sh/setup-bun@v2 with: node-version: '20' - name: Install dependencies - run: npm install + run: bun install - name: Build - run: npm run build + run: bun run build - name: Install Azure SWA CLI - run: npm install -g @azure/static-web-apps-cli + run: bun install -g @azure/static-web-apps-cli - name: Deploy to Azure Static Web Apps run: |