From d8421d6220e8c02a67de60e06f7d643cf459da6a Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 31 Jul 2018 22:04:52 -0500 Subject: Remove deployment step --- .gitlab-ci.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 575156b..fcf1760 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,12 +2,6 @@ image: node:8 stages: - lint - - deploy - -cache: - key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA} - paths: - - node_modules/ before_script: - npm install @@ -16,13 +10,3 @@ lint: stage: lint script: - npm run lint - -pages: - stage: deploy - script: - - echo "noop" - artifacts: - paths: - - . - only: - - master -- cgit