labyrinth-frontend/.forgejo/workflows/npm-build.yaml
Manuel Friedli ed99a8bed4
Some checks failed
/ maven-build (push) Failing after 22s
Move from drone-ci to forgejo actions.
2026-02-25 19:29:32 +01:00

15 lines
338 B
YAML

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