Add an workflow for linting shit

This commit is contained in:
Andrei Jiroh Eugenio Halili 2021-08-28 22:27:02 +08:00 committed by GitHub
parent d30997ebce
commit 0836731e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

18
.github/workflows/script-linter.yml vendored Normal file
View File

@ -0,0 +1,18 @@
# This is a basic workflow that is manually triggered
name: Scripts Linter
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ShellCheck
uses: ludeeus/action-shellcheck@1.1.0
with:
check_together: 'yes'