mirror of
https://gitlab.com/wirelos/sprocket-ui.git
synced 2025-12-14 22:02:24 +01:00
29 lines
559 B
YAML
29 lines
559 B
YAML
# This file is a template, and might need editing before it works on your project.
|
|
# Official framework image. Look for the different tagged releases at:
|
|
# https://hub.docker.com/r/library/node/tags/
|
|
image: node:latest
|
|
|
|
# This folder is cached between builds
|
|
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- yarn install
|
|
- yarn test
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- yarn build:frontend
|
|
|
|
pack:
|
|
stage: publish
|
|
script:
|
|
- yarn pack
|
|
artifacts:
|
|
paths:
|
|
- ./*.tgz |