Files
openstapps/.gitlab-ci.yml
2018-11-28 18:50:23 +01:00

40 lines
472 B
YAML

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