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"