From 82b194b2ace6c37d5cf8d4c0cc3e1747aa33fe86 Mon Sep 17 00:00:00 2001 From: Daniel Svitan Date: Tue, 1 Jul 2025 10:09:10 +0200 Subject: [PATCH] :green_heart: Adds CI build --- .gitea/workflows/build.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..13a71f3 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,19 @@ +name: Gitea Build Action +run-name: ${{ gitea.actor }} build +on: [push] + +jobs: + build-astro: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup Bun 1.2.0 + uses: oven-sh/setup-bun@v2 + with: + bun-version: 1.2.0 + - name: Display Bun version + run: bun --version + - name: "Install dependencies" + run: bun install + - name: "Build" + run: bun run build