This commit is contained in:
parent
b6359bcb5d
commit
ed99a8bed4
3 changed files with 16 additions and 17 deletions
15
.forgejo/workflows/npm-build.yaml
Normal file
15
.forgejo/workflows/npm-build.yaml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue