Add CI workflow for branch builds
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
Hendrik Garske 2026-06-04 22:17:01 +02:00
parent 8e28a654bc
commit 84e696ed9e

19
.forgejo/workflows/ci.yml Normal file
View file

@ -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