24 lines
255 B
YAML
24 lines
255 B
YAML
|
image: node:latest
|
||
|
|
||
|
cache:
|
||
|
key: ${CI_COMMIT_REF_SLUG}
|
||
|
paths:
|
||
|
- node_modules/
|
||
|
|
||
|
before_script:
|
||
|
- yarn
|
||
|
|
||
|
lint:
|
||
|
script:
|
||
|
- yarn lint:sass
|
||
|
|
||
|
pages:
|
||
|
stage: deploy
|
||
|
script:
|
||
|
- yarn build
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- public
|
||
|
only:
|
||
|
- master
|