diff --git a/.gitea/workflows/test-build.yml b/.gitea/workflows/test-build.yml new file mode 100644 index 0000000..93f61c0 --- /dev/null +++ b/.gitea/workflows/test-build.yml @@ -0,0 +1,19 @@ +name: Build Test + +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + container: + image: node:24-bookworm + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build