We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f782157 commit 615793eCopy full SHA for 615793e
.github/workflows/ci.yml
@@ -111,7 +111,7 @@ jobs:
111
# Unit tests + coverage
112
unit_tests:
113
runs-on: ubuntu-22.04
114
- needs: [build]
+ needs: [build, shellcheck]
115
defaults:
116
run:
117
working-directory: react
.github/workflows/release-ci.yml
@@ -18,9 +18,18 @@ permissions:
18
contents: write
19
20
jobs:
21
+ # Shell script linting
22
+ shellcheck:
23
+ runs-on: ubuntu-22.04
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ - name: Run ShellCheck
27
+ run: shellcheck -s sh server/*.sh
28
+
29
# Run tests
30
test:
31
32
+ needs: [shellcheck]
33
34
35
0 commit comments