From af6bbbc59bf6ce5f23ae20b3af8e90dde57efff6 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 13 Mar 2019 17:16:43 -0600 Subject: [PATCH] Add a basic BuildKite :pipeline: --- .buildkite/pipeline.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .buildkite/pipeline.yaml diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml new file mode 100644 index 000000000..df61d7678 --- /dev/null +++ b/.buildkite/pipeline.yaml @@ -0,0 +1,24 @@ +steps: + - label: ":eslint: Lint" + command: + - "yarn install" + - "yarn lint" + plugins: + - docker#v3.0.1: + image: "node:10" + + - label: ":karma: Tests" + command: + - "yarn install" + - "yarn test" + plugins: + - docker#v3.0.1: + image: "node:10" + + - label: "📃 Docs" + command: + - "yarn install" + - "yarn gendoc" + plugins: + - docker#v3.0.1: + image: "node:10"