Files
openstapps/.gitlab-ci.yml
2018-12-03 18:02:16 +01:00

41 lines
508 B
YAML

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