ajout du CI
This commit is contained in:
parent
7d5f8d3875
commit
a356a87a42
1 changed files with 17 additions and 0 deletions
17
.gitlab-ci.yml
Normal file
17
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
Build CSS:
|
||||||
|
stage: build
|
||||||
|
tags:
|
||||||
|
- Docker
|
||||||
|
image: "node:latest"
|
||||||
|
|
||||||
|
script:
|
||||||
|
- npm install bulma
|
||||||
|
- npm install node-sass
|
||||||
|
- cp bulma.sass node_modules/bulma/bulma.sass
|
||||||
|
- cd node_modules/bulma/
|
||||||
|
- npm run build-sass
|
||||||
|
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- node_modules/bulma/css/*
|
||||||
|
|
Loading…
Reference in a new issue