Skip to content

Bump @typescript-eslint/eslint-plugin from 8.28.0 to 8.48.0 #697

Bump @typescript-eslint/eslint-plugin from 8.28.0 to 8.48.0

Bump @typescript-eslint/eslint-plugin from 8.28.0 to 8.48.0 #697

Workflow file for this run

name: shellcheck
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
Run-Pre-Commit:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Install shellcheck
run: sudo apt-get install shellcheck
- name: Run shellcheck
run: for file in $(find ./source-repo -type f -iname "*.sh"); do shellcheck $file; done;