From 4057f530671c89e62c943d1a0f974150c00103cc Mon Sep 17 00:00:00 2001 From: DrHaid <40427630+DrHaid@users.noreply.github.com> Date: Tue, 6 Jan 2026 15:19:19 +0100 Subject: [PATCH] Add build workflow --- .gitea/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..eb7bf58 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,24 @@ +name: Build + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: checkout code + uses: actions/checkout@v3 + - name: setup node + uses: actions/setup-node@v3 + with: + node-version: 24 + + - name: install dependencies + run: npm ci + - name: build extension for Firefox + run: npm run build \ No newline at end of file