Skip to content
Snippets Groups Projects
.gitlab-ci.yml 681 B
Newer Older
rhenck's avatar
rhenck committed
stages:
  - install
rhenck's avatar
rhenck committed
  - test
  - build
  - deploy

default:
  image: iqbberlin/ci-node-chromium:latest

rhenck's avatar
rhenck committed
test-unit:
  stage: test
  before_script:
    - npm ci --cache .npm --prefer-offline
rhenck's avatar
rhenck committed
  script:
    - npm run test
  cache:
    key: aspect-npm-packages
    paths:
      - .npm/

rhenck's avatar
rhenck committed
#deploy:
#  stage: deploy
#  only:
#    refs:
#      - master
#  before_script:
#    - npm ci --cache .npm --prefer-offline
#  script:
#    - npm run build-editor
#    - npm run build-player
#    - ./scripts/deploy.sh $TESTSTUDIO_USERNAME $TESTSTUDIO_PASSWORD
#  artifacts:
#    paths:
#      - dist/iqb-editor-aspect-nightly.html
#      - dist/iqb-player-aspect-nightly.html
#    expire_in: 1 week