17 lines
298 B
YAML
17 lines
298 B
YAML
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/*
|
|
|