stages:
- lint
- build
+ - deploy
+
+cache:
+ key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA}
+ paths:
+ - node_modules/
+
+before_script:
+ - npm install
lint:
stage: lint
script:
- - npm install
- npm run lint
build:
stage: build
script:
- - npm install
- npm run build
+ artifacts:
+ paths:
+ - dist
+
+pages:
+ stage: deploy
+ script:
+ - mv dist public
+ artifacts:
+ paths:
+ - public
+ only:
+ - develop