Skip to content

Commit 1093f59

Browse files
committed
Added shellckeck to workflo
1 parent c01409a commit 1093f59

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/workflow-template.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,14 @@ jobs:
1313
for f in $(find github/workflows/ -name '*.yaml'); do
1414
docker run --rm --volume "$PWD":/workdir mikefarah/yq "$f" > /dev/null
1515
done
16+
17+
shellcheck:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: arduino/setup-task@v2
22+
with:
23+
repo-token: ${{ secrets.GITHUB_TOKEN }}
24+
25+
- run: |
26+
task lint:shell-script

0 commit comments

Comments
 (0)