uhr/.gitlab-ci.yml

24 lines
309 B
YAML
Raw Normal View History

2015-07-14 00:06:29 +02:00
# This file is generated by GitLab CI
2015-10-07 19:14:09 +02:00
stages:
- clean
- build
cleanup:
stage: clean
script:
- rm -r node_modules
- rm -r bower_components
tags:
except:
- tags
2015-07-14 00:06:29 +02:00
Npm, Bower, Grunt:
2015-10-07 19:14:09 +02:00
stage: build
2015-07-14 00:06:29 +02:00
script:
2015-10-07 19:14:09 +02:00
- npm install
- bower install
- grunt
2015-07-14 00:06:29 +02:00
tags:
except:
2015-10-07 19:14:09 +02:00
- tags