From 9481819fd2a0ff5b65263d7560dbfb23592e7fb5 Mon Sep 17 00:00:00 2001 From: skid-dev <62094231+skid-dev@users.noreply.github.com> Date: Thu, 12 Jun 2025 19:49:26 +1000 Subject: [PATCH] Add CI workflow to build on push --- .github/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 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..014cb6c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,14 @@ +name: Build +on: + push: + branches: ["**"] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: oven-sh/setup-bun@v1 + with: + bun-version: "latest" + - run: bun install --frozen-lockfile + - run: bun run build