OpenMediaCenter/.gitlab-ci.yml

31 lines
378 B
YAML
Raw Normal View History

2020-06-09 15:49:41 +00:00
image: node:latest
stages:
- test
2020-06-09 18:10:26 +00:00
- coverage
2020-06-09 15:49:41 +00:00
- build
cache:
paths:
- node_modules/
test:
stage: test
script:
- npm install
- npm run test
2020-06-09 18:10:26 +00:00
coverage:
stage: coverage
script:
- npm run coverage
artifacts:
reports:
cobertura: coverage/cobertura-coverage.xml
2020-06-09 19:41:58 +00:00
junit: junit.xml
2020-06-09 18:10:26 +00:00
2020-06-09 15:49:41 +00:00
build:
stage: build
script:
- npm run build