From dcd5808fef45b7e43b231d90cf4426c5f8a34a16 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Tue, 14 Aug 2018 21:15:40 +0300 Subject: [PATCH] Fix build pipeline --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b1ff2b0..65dbe8e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,31 +12,31 @@ cache: - node_modules/ setup: - image: node:7.10.0 + image: node stage: setup script: - npm install # test:unit: -# image: node:7.10.0 +# image: node # stage: test # script: # - npm run test:unit # test:e2e: -# image: node:7.10.0 +# image: node # stage: test # script: # - npm run test:e2e ts:lint: - image: node:7.10.0 + image: node stage: lint script: - npm run lint:ts sass:lint: - image: node:7.10.0 + image: node stage: lint script: - npm run lint:sass @@ -45,7 +45,7 @@ publish: stage: publish image: docker:latest only: - - develop + - master before_script: - docker info - docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN $REGISTRY_URL