2019-01-04 17:25:30 +00:00
|
|
|
language: node_js
|
2019-01-04 17:45:52 +00:00
|
|
|
- "node"
|
2019-01-05 11:59:16 +00:00
|
|
|
|
|
|
|
stages:
|
2019-01-05 12:10:55 +00:00
|
|
|
- name: install
|
2019-01-05 11:59:16 +00:00
|
|
|
if: branch = "master"
|
2019-01-05 12:10:55 +00:00
|
|
|
- name: test
|
|
|
|
- name: build
|
2019-01-05 11:59:16 +00:00
|
|
|
if: branch = "master"
|
2019-01-05 12:10:55 +00:00
|
|
|
- name: pre-deploy
|
2019-01-05 11:59:16 +00:00
|
|
|
if: branch = "master"
|
2019-01-05 12:10:55 +00:00
|
|
|
- name: deploy
|
2019-01-05 11:59:16 +00:00
|
|
|
if: branch = "master"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- stage: install
|
|
|
|
script: npm --force install tiddlywiki
|
|
|
|
- stage: test
|
|
|
|
script: ./bin/test.sh
|
|
|
|
- stage: build
|
|
|
|
script: ./bin/build-site.sh
|
|
|
|
- stage: pre-deploy
|
2019-01-05 18:35:56 +00:00
|
|
|
script: skip
|
2019-01-05 11:59:16 +00:00
|
|
|
- stage: deploy
|
|
|
|
script: ./bin/deploy-site.sh
|