From 1b9a530dd2c8972c0211fe52aa08ba2e8131eeec Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Tue, 8 Dec 2020 10:56:48 +0100 Subject: [PATCH] Install shfmt in lint job --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0b2a470850..99f47e07bb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -458,6 +458,12 @@ jobs: - image: circleci/node:10-buster steps: - checkout + - run: + name: Install shfmt + command: | + sudo wget https://github.com/mvdan/sh/releases/download/v3.2.1/shfmt_v3.2.1_linux_amd64 -O /usr/local/bin/shfmt + sudo chmod +x /usr/local/bin/shfmt + shfmt --version - run: name: Version information command: echo "node $(node --version)"; echo "yarn $(yarn --version)"