From 63b462b6f2c53c19e0d4629ce0cff88d0c5a15f3 Mon Sep 17 00:00:00 2001 From: riccardo Date: Sun, 18 Jan 2026 16:31:54 +0000 Subject: [PATCH] build: gitea pipeline test --- .gitea/workflows/deploy.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..a8a9cb8 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,29 @@ +name: Deploy + +on: + push: + branches: [ main ] + +jobs: + lint-build-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '18' + + - name: Install dependencies + run: npm ci + + - name: Run linting + run: npm run lint + + - name: Build + run: npm run build + + - name: Deploy notification + run: echo "Build successful! Deploy step would go here" \ No newline at end of file