Select Git revision
.gitlab-ci.yml
-
Sigmund, Dominik authoredSigmund, Dominik authored
.gitlab-ci.yml 452 B
image: node:latest
cache:
paths:
- node_modules/
- docs/
stages:
- test
- publish
test:
stage: test
before_script:
- npm install -g jest
- npm install
script:
- jest
artifacts:
paths:
- docs/test-report.html
- docs/coverage/lcov.info
audit:
stage: test
script:
- npm audit
publish:
only:
refs:
- tags
stage: publish
script:
- npm install --production
- npm publish