From 85eefbfdfa171eec01e1c55b0e144d769d2484ec Mon Sep 17 00:00:00 2001 From: Chris Hines <chris.hines@monash.edu> Date: Mon, 11 Feb 2019 09:34:08 +1100 Subject: [PATCH] simplify ci to bebug ci pipeline --- .gitlab-ci.yml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0157e73..b82728d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,15 +1,6 @@ -image: trion/ng-cli-karma +stages: + - test -cache: - paths: - - node_modules/ - -deploy_stage: - stage: deploy - environment: Stage - only: - - master - script: - - rm ./package-lock.json - - npm install - - ./node_modules/@angular/cli/bin/ng build --progress false --prod --base-href=/sv2/ +test: + stage: test + script: echo "Running test" -- GitLab