mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-16 21:59:03 +00:00
Jake Howard
262447cd32
Can't cache directory outside project https://docs.gitlab.com/ee/ci/caching/#caching-nodejs-dependencies
18 lines
265 B
YAML
18 lines
265 B
YAML
image: "node:lts-slim"
|
|
|
|
cache:
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
paths:
|
|
- .npm
|
|
- .cache
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- npm ci --cache .npm --prefer-offline --production
|
|
- npm run release
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|