Refactor deployment workflow to use Bun instead of Node.js
Some checks failed
Deploy to Azure Static Web Apps / build-and-deploy (push) Failing after 1m18s

This commit is contained in:
2025-11-28 10:22:33 -06:00
parent 8546b99035
commit ba6f59c4c8

View File

@@ -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: |