1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-06-30 20:23:59 +00:00
foris-js/.gitlab-ci.yml
2020-08-18 16:17:00 +02:00

45 lines
588 B
YAML

image: node:10-alpine
stages:
- test
- build
- publish
before_script:
- apk add make
- npm install
test:
stage: test
script:
- make test
lint:
stage: test
script:
- make lint
build:
stage: build
script:
- make pack
artifacts:
paths:
- dist/foris-*.tgz
publish_beta:
stage: publish
only:
refs:
- dev
script:
- make publish-beta
publish_latest:
stage: publish
only:
refs:
- master
script:
- make publish-latest