Initial commit

This commit is contained in:
Wieland Schöbl
2019-08-20 13:46:25 +02:00
commit 8f62b0faa0
16 changed files with 4370 additions and 0 deletions

36
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,36 @@
image: registry.gitlab.com/openstapps/projectmanagement/node
stages:
- test
- deploy
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules
audit:
allow_failure: true
except:
- schedules
script:
- npm audit
stage: test
scheduled-audit:
only:
- schedules
script:
- npm audit
stage: test
pages:
artifacts:
paths:
- public
only:
- /^v[0-9]+\.[0-9]+\.[0-9]+$/
script:
- npm run documentation
- mv docs public
stage: deploy