From ba37a55a6c36d5ef47e3c6b6ec00753b1e8659c8 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Tue, 4 Jun 2019 16:40:41 +0100 Subject: [PATCH] Install latest JS SDK when linting Since React SDK's linting rules depend on JS SDK, we should use the latest changes when linting as well in case there's been a recent rule change. --- .buildkite/pipeline.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 946e417676..e918466e6f 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -1,7 +1,12 @@ steps: - label: ":eslint: Lint" command: - - "yarn install" + # TODO: Remove hacky chmod for BuildKite + - "echo '--- Setup'" + - "chmod +x ./scripts/ci/*.sh" + - "chmod +x ./scripts/*" + - "echo '--- Install js-sdk'" + - "./scripts/ci/install-deps.sh" - "yarn lintwithexclusions" - "yarn stylelint" plugins: