18 lines
255 B
YAML
18 lines
255 B
YAML
image: node
|
|
|
|
before_script:
|
|
- yarn --cwd frontend install
|
|
|
|
cache:
|
|
paths:
|
|
- frontend/node_modules/
|
|
|
|
pages:
|
|
script:
|
|
- yarn --cwd frontend run generate
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|