Files
openstapps/.gitlab-ci.yml
Anselm Stordeur 911d71cf3b feat: add logger
2018-11-28 18:31:01 +01:00

39 lines
462 B
YAML

image: node:lts-alpine
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- lib
- node_modules
before_script:
- npm install
stages:
- build
- test
build:
stage: build
script:
- npm run build
artifacts:
untracked: true
paths:
- node_modules/
test:
stage: test
script:
- npm test
docs:
stage: publish
script:
- npm run documentation
only:
- /^v[0-9]+\.[0-9]+\.[0-9]+$/
artifacts:
paths:
- docs