21 lines
295 B
YAML
21 lines
295 B
YAML
image: node
|
|
|
|
before_script:
|
|
- yarn --cwd frontend install
|
|
|
|
cache:
|
|
paths:
|
|
- frontend/node_modules/
|
|
|
|
variables:
|
|
BASE_URL: "/notes-tfe/"
|
|
|
|
pages:
|
|
script:
|
|
- yarn --cwd frontend run generate
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|