Merge branch 'pipeline' into 'main'

build: add a pipeline for tests

See merge request webstreamr/webstreamr!1
This commit is contained in:
WebStreamr 2026-04-07 02:09:05 +00:00
commit 6530180c1d

16
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,16 @@
stages:
- test
test:
stage: test
image: node:24
cache:
key:
files:
- package-lock.json
paths:
- .npm/
before_script:
- npm ci --cache .npm --prefer-offline
script:
- npm run ci