tried to fix .gitlab-ci.yml
This commit is contained in:
parent
fcf16cc80e
commit
3b2fcbe16e
1 changed files with 19 additions and 5 deletions
|
@ -1,5 +1,19 @@
|
||||||
# This file is generated by GitLab CI
|
# 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:
|
Npm, Bower, Grunt:
|
||||||
|
stage: build
|
||||||
script:
|
script:
|
||||||
- npm install
|
- npm install
|
||||||
- bower install
|
- bower install
|
||||||
|
|
Loading…
Reference in a new issue