From 110b63b816ec0f8958721ef353db6df286a02293 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 8 Jan 2020 16:14:01 -0700 Subject: [PATCH] Fix buildkite pipeline --- .buildkite/pipeline.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index a67dd197d..1e2c25ce6 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -1,8 +1,7 @@ steps: - label: ":eslint: JS Lint" command: - - "echo '--- Install js-sdk'" - - "./scripts/ci/install-deps.sh" + - "yarn install" - "yarn lint:js" plugins: - docker#v3.0.1: @@ -20,8 +19,7 @@ steps: - label: ":eslint: Types Lint" command: - - "echo '--- Install js-sdk'" - - "./scripts/ci/install-deps.sh" + - "yarn install" - "yarn lint:types" plugins: - docker#v3.0.1: @@ -29,8 +27,8 @@ steps: - label: "🛠 Build" command: - - "echo '--- Install js-sdk'" - - "./scripts/ci/install-deps.sh" + # TODO: This probably needs to be more sophisticated than "just install stuff" + - "yarn install" - "yarn build" plugins: - docker#v3.0.1: