2018-10-13 10:03:14 +00:00
|
|
|
image: node:alpine # Use latest version of Node.js on Alpine
|
2016-02-29 14:25:06 +00:00
|
|
|
|
2018-10-28 08:16:18 +00:00
|
|
|
cache: # add cache to 'node_modules' for speeding up builds
|
|
|
|
paths:
|
|
|
|
- node_modules/ # Node modules and dependencies
|
|
|
|
|
|
|
|
before_script:
|
2019-06-02 05:01:08 +00:00
|
|
|
- apk update && apk add git
|
2019-08-23 02:36:25 +00:00
|
|
|
- npm install --only=prod -g npm
|
2019-08-23 02:32:37 +00:00
|
|
|
- npm install --only=prod
|
2016-02-29 14:25:06 +00:00
|
|
|
|
2018-10-28 08:16:18 +00:00
|
|
|
test:
|
2018-09-25 00:16:25 +00:00
|
|
|
script:
|
2019-08-23 02:32:37 +00:00
|
|
|
- npm install --only=prod snyk && npm run snyk # Refer to "scripts" in package.json
|
2018-11-03 03:58:26 +00:00
|
|
|
- npm run hexo
|
2018-10-28 08:16:18 +00:00
|
|
|
|
|
|
|
only:
|
|
|
|
- master # only trigger when 'master' branch is pushed
|
|
|
|
|
2018-11-06 08:37:35 +00:00
|
|
|
# Don't run this job when renovate job runs
|
|
|
|
except:
|
|
|
|
- schedules
|
|
|
|
- web
|
|
|
|
|
2018-10-28 08:16:18 +00:00
|
|
|
renovate: # Check dependency update
|
|
|
|
script:
|
2019-08-23 02:32:37 +00:00
|
|
|
- npm install --only=prod renovate
|
2018-10-28 07:28:45 +00:00
|
|
|
- npm run renovate
|
2018-09-29 06:03:51 +00:00
|
|
|
|
2018-09-25 00:57:38 +00:00
|
|
|
only:
|
2018-11-03 03:58:26 +00:00
|
|
|
- schedules # trigger build by schedules
|
|
|
|
- web # trigger through "Run pipeline" button in GitLab.com
|
2018-10-01 03:05:37 +00:00
|
|
|
|
|
|
|
|
2018-10-02 04:35:40 +00:00
|
|
|
# # Uncomment below (and comment/remove above) lines for gitlab pages
|
|
|
|
# image: node:latest # Use latest version of Node.js
|
2018-10-01 03:05:37 +00:00
|
|
|
# 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
|