From 59d116c0a6e792d3329c59a0ef48d22e3a4b2854 Mon Sep 17 00:00:00 2001 From: v4ltages Date: Wed, 12 Aug 2026 19:13:14 +0300 Subject: [PATCH] Replace build process with npm --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e4e26a5..b5976ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies - run: bun install + run: npm install - name: Build project - run: bun run build + run: npm run build