Uwev2/.gitlab-ci.yml

22 lines
263 B
YAML
Raw Normal View History

2017-11-08 13:09:54 +00:00
image: node:latest
stages:
- build
2017-11-08 13:12:39 +00:00
- babel
2017-11-08 13:09:54 +00:00
cache:
paths:
- node_modules/
- dist/
install_dependencies:
stage: build
script:
- npm install
artifacts:
paths:
2017-11-08 13:12:39 +00:00
- node_modules/
babel_compile:
stage: babel
script: npm run build