diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml new file mode 100644 index 0000000..74a5e5e --- /dev/null +++ b/.forgejo/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + with: + token: ${{ github.token }} + - name: Install + run: npm ci + - name: Build + run: npm run build + env: + NEXT_TELEMETRY_DISABLED: 1