hexo-yam/.travis.yml

21 lines
504 B
YAML
Raw Normal View History

2018-09-27 06:46:45 +00:00
language: node_js
node_js:
- "node" # latest stable Node.js release
cache:
directories:
- "node_modules" # cache the modules for faster build
script:
2018-09-28 02:24:17 +00:00
- npm install -g snyk
2018-09-27 06:46:45 +00:00
- npm install # install node modules
- snyk auth $SNYK_TOKEN
2018-09-28 02:24:17 +00:00
- snyk test # Check node modules for vulnerability
- snyk protect # Patch node modules (if available)
- snyk monitor # Update dependencies to snyk
2018-10-15 04:22:13 +00:00
branches:
only:
- master # Only build master branch
2018-10-25 05:39:01 +00:00
- /^greenkeeper.*$/ # Greenkeeper branches