From 0ae34c8bae4598ef16ab65fe68337fa234747463 Mon Sep 17 00:00:00 2001 From: dimkk Date: Sat, 3 Jan 2026 19:35:46 +0300 Subject: [PATCH] chore: fix bun ci --- .gitea/workflows/deploy.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 1586c3d..d86c573 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,5 +1,5 @@ # .gitea/workflows/deploy.yml -name: CI/CD +name: Bun CI/CD on: push: @@ -10,11 +10,14 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Setup Node - uses: actions/setup-node@v4 + - name: 📥 Checkout code + uses: actions/checkout@v4 + + - name: 🛠️ Install Bun + uses: oven-sh/setup-bun@v2 with: - node-version: '20' + bun-version: latest # Or specify a version like "1.3.3" + - run: bun ci - run: bun test