From 4f8b7c62da69836bda57247e750fa592e9fa0065 Mon Sep 17 00:00:00 2001 From: Pascal Syma Date: Sun, 30 Mar 2025 18:06:55 +0200 Subject: [PATCH] Use bun in CI --- .github/workflows/deploys.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploys.yml b/.github/workflows/deploys.yml index e5795ab..c193687 100644 --- a/.github/workflows/deploys.yml +++ b/.github/workflows/deploys.yml @@ -27,12 +27,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: 22 - - run: npm install --frozen-lockfile + uses: oven-sh/setup-bun@v2 + - run: bun install --include=dev - name: Build project - run: npm run build-only + run: bun run build-only - name: Setup Pages uses: actions/configure-pages@v4 - name: Upload artifact