uhr/.gitlab-ci.yml

24 lines
309 B
YAML

# This file is generated by GitLab CI
stages:
- clean
- build
cleanup:
stage: clean
script:
- 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