Add a basic BuildKite :pipeline:

pull/9165/head
Travis Ralston 2019-03-13 18:25:06 -06:00
parent 1d51507134
commit b6cdaa8597
1 changed files with 21 additions and 0 deletions

21
.buildkite/pipeline.yaml Normal file
View File

@ -0,0 +1,21 @@
steps:
- label: ":eslint: Lint"
command:
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "yarn lint"
plugins:
- docker#v3.0.1:
image: "node:10"
- label: ":karma: Tests"
command:
#- "sudo apt-get install git"
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "yarn test"
plugins:
- docker#v3.0.1:
image: "node:10"
#image: "buildkite/puppeteer:v1.11.0"