From 95e0be3ac02f991223c16370b6eadd159a7feb17 Mon Sep 17 00:00:00 2001 From: Pixel Date: Sun, 12 Apr 2026 09:07:25 +0200 Subject: [PATCH] chore(ci): switch from npm to bun for deployment --- .gitea/workflows/deploy.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 756e97b..3c19e68 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,15 +1,14 @@ name: Next.js Deploy on: push: - branches: [main, feature/migration-nextjs] + branches: [main, feature/migration-nextjs-8285342661616568434] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: "20" - - run: npm install - - run: npm run build - - run: npm run lint + - name: Install Bun + uses: oven-sh/setup-bun@v1 + - run: bun install + - run: bun run build + - run: bun run lint