Move from drone-ci to forgejo actions.
Some checks failed
/ maven-build (push) Failing after 22s

This commit is contained in:
Manuel Friedli 2026-02-25 19:26:29 +01:00
parent b6359bcb5d
commit ed99a8bed4
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
3 changed files with 16 additions and 17 deletions

View file

@ -0,0 +1,15 @@
on: [push]
jobs:
maven-build:
runs-on: docker
container:
image: node:25-trixie
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Run npm install
run: npm install
- name: Run npm build
run: npm run build
- name: Run npm lints
run: npm run lint