Files
openstapps/.gitlab-ci.yml
2018-12-04 14:16:48 +01:00

39 lines
499 B
YAML

image: registry.gitlab.com/openstapps/projectmanagement/node
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- lib
- node_modules
before_script:
- npm ci
stages:
- build
- test
- deploy
build:
stage: build
script:
- npm run build
except:
- schedules
tslint:
stage: test
script:
- npm run tslint
pages:
stage: deploy
script:
- npm run documentation
- mv docs public
only:
- /^v[0-9]+\.[0-9]+\.[0-9]+$/
artifacts:
paths:
- public