OpenMediaCenter/.gitlab-ci.yml
2020-06-09 20:10:26 +02:00

30 lines
355 B
YAML

image: node:latest
stages:
- test
- coverage
- build
cache:
paths:
- node_modules/
test:
stage: test
script:
- npm install
- npm run test
coverage:
stage: coverage
script:
- npm run coverage
artifacts:
reports:
cobertura: coverage/cobertura-coverage.xml
build:
stage: build
script:
- npm run build