16 lines
249 B
YAML
16 lines
249 B
YAML
|
build:
|
||
|
image: node:slim
|
||
|
stage: build
|
||
|
cache:
|
||
|
key: ${CI_COMMIT_REF_SLUG}
|
||
|
paths:
|
||
|
- .npm
|
||
|
- .cache
|
||
|
before_script:
|
||
|
- npm ci --cache .npm --prefer-offline
|
||
|
script:
|
||
|
- npm run build
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- public
|