diff --git a/.github/workflows/test-docs-scripts.yml b/.github/workflows/test-docs-scripts.yml index 143c50d128..e47ccbe4e0 100644 --- a/.github/workflows/test-docs-scripts.yml +++ b/.github/workflows/test-docs-scripts.yml @@ -69,6 +69,7 @@ jobs: protoc --version sqlite3 --version wasm-pack --version + shellcheck --version macos: name: Test System Setup Scripts (${{ matrix.os }}) @@ -125,6 +126,7 @@ jobs: protoc --version sqlite3 --version wasm-pack --version + shellcheck --version docker-ubuntu: name: Test Docker Setup Script (${{ matrix.os }}) diff --git a/website/docs/developers/scripts/setup/install-system-deps-macos.sh b/website/docs/developers/scripts/setup/install-system-deps-macos.sh index 7cee9dcafe..2e91ec0d52 100755 --- a/website/docs/developers/scripts/setup/install-system-deps-macos.sh +++ b/website/docs/developers/scripts/setup/install-system-deps-macos.sh @@ -10,4 +10,5 @@ brew install \ protobuf \ sqlite \ git \ - curl \ No newline at end of file + curl \ + shellcheck \ No newline at end of file diff --git a/website/docs/developers/scripts/setup/install-system-deps.sh b/website/docs/developers/scripts/setup/install-system-deps.sh index 9ebc428b10..9654c7f86b 100755 --- a/website/docs/developers/scripts/setup/install-system-deps.sh +++ b/website/docs/developers/scripts/setup/install-system-deps.sh @@ -6,4 +6,5 @@ sudo apt install -y \ protobuf-compiler \ sqlite3 \ git \ - curl + curl \ + shellcheck