21 lines
250 B
YAML
21 lines
250 B
YAML
image: node
|
|
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
stages:
|
|
- build
|
|
# - test
|
|
|
|
before_script:
|
|
- git submodule update --init
|
|
- npm install
|
|
|
|
building_ui:
|
|
tags:
|
|
- docker
|
|
stage: build
|
|
script:
|
|
- npm run build
|