From d835f4a93118942c4a304b844f7ad4ac9f5dec88 Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Sun, 22 Feb 2026 15:02:29 +0100 Subject: [PATCH] add CI workflow for automated build and deployment --- .gitea/workflows/ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..f728d00 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,28 @@ +name: CI + +on: + push: + branches: [master, dev] + pull_request: + branches: [master, dev] + +jobs: + build-and-publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: '24' + + - run: npm install -g pnpm + + - name: Install Dependencies + run: pnpm install + + - name: Run TSC Build + run: pnpm build + + - name: Kiss Goodbye + run: echo "Build and tests passed! Ready to deploy. 😘"