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