Skip to content

refact(installer, updater): formatting & small fixes #657

refact(installer, updater): formatting & small fixes

refact(installer, updater): formatting & small fixes #657

Workflow file for this run

name: Script Checks
on:
pull_request:
paths:
- '**/*.sh'
workflow_dispatch:
permissions:
contents: read
pull-requests: write
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Run ShellCheck
uses: reviewdog/action-shellcheck@v1
with:
shellcheck_flags: '--source-path=${{ github.workspace }}/.shellcheckrc'
reviewdog_flags: '-fail-level=any'
shfmt:
name: Shell Fomatting
runs-on: ubuntu-latest
needs: shellcheck
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Run shfmt
uses: reviewdog/action-shfmt@v1
with:
shfmt_flags: '-i 4 -ci'
reviewdog_flags: '-fail-level=any'