diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dc9ce76..32ae9cf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,23 @@ # This file is generated by GitLab CI -Npm, Bower, Grunt: +stages: + - clean + - build + +cleanup: + stage: clean script: - - npm install - - bower install - - grunt + - rm -r node_modules + - rm -r bower_components + tags: + except: + - tags + +Npm, Bower, Grunt: + stage: build + script: + - npm install + - bower install + - grunt tags: except: - - tags + - tags