From 7136993b090f4f6aee8bce06b10d121f5808b674 Mon Sep 17 00:00:00 2001 From: tymurbaniak Date: Sat, 28 Feb 2026 01:01:59 +0200 Subject: [PATCH] Add .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..5504f11 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,16 @@ +name: Build + +on: + push: + branches: [ main ] + +jobs: + build: + runs-on: linux + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build + run: npm run build \ No newline at end of file