| 1234567891011121314151617181920212223242526272829 |
- stages:
- - test
- - deploy
- jobs:
- include:
- - stage: test
- language: node_js
- node_js:
- - 12
- name: "Lint src and check docs"
- script: npm run pre-commit
- if: type = pull_request
- - stage: deploy
- name: "Deploy docs"
- language: ruby
- rvm:
- - 2.4.1
- before_install:
- - nvm install 12
- script: ./deploy.sh
- if: branch = master AND type = push
- cache: bundler
- env:
- global:
- - ENCRYPTION_LABEL: "5453d0fdf68a"
- - COMMIT_AUTHOR_EMAIL: "wenzhixin2010@gmail.com"
|