OpenMediaCenter/.gitlab-ci.yml

21 lines
205 B
YAML
Raw Normal View History

2020-06-09 15:49:41 +00:00
image: node:latest
stages:
- test
- build
cache:
paths:
- node_modules/
test:
stage: test
script:
- npm install
- npm run test
build:
stage: build
script:
- npm run build