build: add a pipeline for tests #1

Merged
webstreamr merged 1 commit from pipeline into main 2026-04-07 02:12:26 +00:00

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