image: "node:12-slim" stages: - test - package before_script: # Install dependencies - apt-get update - apt-get install -y git python3 build-essential libxtst6 # Prepare Chrome for puppeteer - apt-get install -y wget gnupg - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - - sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' - apt-get update - apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends test: stage: test script: - npm ci - npm run lint - npm test package-docker: stage: package image: docker:latest services: - docker:dind only: - master before_script: [] script: - export IMG_NAME=registry.gitlab.com/timvisee/send:master-$CI_COMMIT_SHA # Login in to registry - 'docker login registry.gitlab.com -u $DOCKER_USER -p $DOCKER_PASS' # build and push image - docker build -t $IMG_NAME . - docker push $IMG_NAME