From ace13cd71e90225bddf2bba77f83356508114604 Mon Sep 17 00:00:00 2001 From: Kayra Date: Tue, 30 Apr 2024 15:38:16 +0300 Subject: [PATCH] use npm instead of bun --- .github/workflows/main.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3611265..0dc6607 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,14 +28,12 @@ jobs: steps: - uses: actions/checkout@v3 - name: Use Bun - uses: oven-sh/setup-bun@v1 - with: - bun-version: latest + uses: actions/setup-node@v4 - name: Build frontend run: | - bun install - bun run build + npm install + npm run build go-vet: runs-on: ubuntu-latest steps: