blog/.gitlab-ci.yml

38 lines
1.0 KiB
YAML
Raw Normal View History

image: node:alpine # Use latest version of Node.js on Alpine
2016-02-29 14:25:06 +00:00
test:
cache: # add cache to 'node_modules' for speeding up builds
paths:
- node_modules/ # Node modules and dependencies
2016-02-29 14:25:06 +00:00
script:
- npm install
- npm run build
- npm run renovate
only:
- master # this job will affect only the 'master' branch
# # Uncomment below (and comment/remove above) lines for gitlab pages
# image: node:latest # Use latest version of Node.js
# pages:
# cache: # add cache to 'node_modules' for speeding up builds
# paths:
# - node_modules/ # Node modules and dependencies
# script:
# - npm install -g snyk hexo-cli
# - npm install # install node modules
# - snyk auth $SNYK_TOKEN
# - snyk protect # Apply patches to node modules
# - snyk test # Check node modules for vulnerability
# - hexo deploy # deploy the site.
# artifacts:
# paths:
# - public # deploy to the 'public' folder.
# only:
# - master # this job will affect only the 'master' branch