From 5e3f80e93c099d522613fb00942635622113cfc9 Mon Sep 17 00:00:00 2001 From: awwpotato Date: Tue, 10 Dec 2024 10:34:49 -0800 Subject: [PATCH] fix build action --- .github/workflows/build.yml | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c745662..2a0b2f3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,21 +1,15 @@ name: Build on: - pull_request: + pull_request: jobs: - format: - runs-on: ubuntu-latest - name: Build Application - steps: - - name: Checkout - - uses: actions/checkout@v3 - - - name: Setup - - uses: oven-sh/setup-bun@v2 - - - name: Install - - run: bun install - - - name: Build - - run: bun run build + format: + runs-on: ubuntu-latest + name: Build Application + steps: + - uses: actions/checkout@v3 + - uses: oven-sh/setup-bun@v2 + - run: bun install + - name: Build + run: bun run build