From b05b2822bc285f0c34699bf8c6de9ac1047191db Mon Sep 17 00:00:00 2001 From: Balackburn Date: Wed, 23 Oct 2024 13:31:21 +0200 Subject: [PATCH] test --- .github/workflows/deploy.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d808fed..44f9f6c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,20 +28,19 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Setup Node - uses: actions/setup-node@v4 + - name: Setup Bun + uses: oven-sh/setup-bun@v1 with: - node-version: 20 - cache: npm + bun-version: latest - name: Setup Pages uses: actions/configure-pages@v4 - name: Install dependencies - run: npm ci + run: bun install - name: Build with Vite - run: npm run build + run: bun run build - name: Upload artifact uses: actions/upload-pages-artifact@v3