From efc08ff4a02bed4f0c8992c5c886c36e0b886ecb Mon Sep 17 00:00:00 2001 From: Azalea Colburn <62953415+azaleacolburn@users.noreply.github.com> Date: Sun, 1 Dec 2024 15:37:15 -0800 Subject: [PATCH] Build Action (#14) * Create build.yml * fix: format workflow --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6425d33 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build + +on: + push: + branches: + - main + pull_request: + branches: + - main + +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