labyrinth-frontend/.forgejo/workflows/npm-build.yaml
Manuel Friedli 569fbd1061
All checks were successful
/ npm-build (push) Successful in 22s
rename action
2026-03-07 23:51:26 +01:00

15 lines
335 B
YAML

on: [push]
jobs:
npm-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 lint
run: npm run lint