Skip to content

Commit c82b25d

Browse files
committed
Install shellcheck and shfmt for deploy workflow
Both of the release scripts call `pnpm verify:bail` (which runs the test suite), so these test dependencies need to be installed here as well. Although `shellcheck` is included in GitHub's `ubuntu-latest` build image, we explicitly install it here both for consistency with the `verify` workflow and as a guard against this being removed from the build image in future.
1 parent 4106b56 commit c82b25d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14+
- name: Install shellcheck and shfmt (used for testing)
15+
run: sudo apt-get install -y shellcheck shfmt
16+
1417
- uses: pnpm/action-setup@v2
1518
with:
1619
version: 8

0 commit comments

Comments
 (0)