Skip to content

Commit 8e27e87

Browse files
committed
docs: add shellcheck to system dependencies installation
- Add shellcheck to Ubuntu/Debian system dependencies script - Add shellcheck to macOS system dependencies script via Homebrew - Update CI workflow to verify shellcheck installation This ensures shellcheck is available for developers following the setup documentation and validates the installation in CI testing.
1 parent d34331b commit 8e27e87

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/test-docs-scripts.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
protoc --version
7070
sqlite3 --version
7171
wasm-pack --version
72+
shellcheck --version
7273
7374
macos:
7475
name: Test System Setup Scripts (${{ matrix.os }})
@@ -125,6 +126,7 @@ jobs:
125126
protoc --version
126127
sqlite3 --version
127128
wasm-pack --version
129+
shellcheck --version
128130
129131
docker-ubuntu:
130132
name: Test Docker Setup Script (${{ matrix.os }})

website/docs/developers/scripts/setup/install-system-deps-macos.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ brew install \
1010
protobuf \
1111
sqlite \
1212
git \
13-
curl
13+
curl \
14+
shellcheck

website/docs/developers/scripts/setup/install-system-deps.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ sudo apt install -y \
66
protobuf-compiler \
77
sqlite3 \
88
git \
9-
curl
9+
curl \
10+
shellcheck

0 commit comments

Comments
 (0)