Install shfmt in lint job

This commit is contained in:
Simon Warta 2020-12-08 10:56:48 +01:00
parent 4370c4c547
commit 1b9a530dd2

View File

@ -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)"