From 924a46eca2014dedda97f1129971a9d6c19a72f9 Mon Sep 17 00:00:00 2001 From: Vladislav Nepogodin Date: Thu, 28 Nov 2024 23:07:15 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20CI:=20add=20build=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 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 00000000..46cac198 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: Build +on: + push: + branches: + - next + workflow_dispatch: +jobs: + build_and_deploy: + runs-on: ubuntu-latest + container: oven/bun:1 + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build + run: bun install --frozen-lockfile --production && bun --bun run build