Browser setup fix few potential issues. #261
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for bashisms | |
on: | |
# push: | |
# paths: | |
# - core/tabs/** | |
# branches: [ "main" ] | |
pull_request: | |
paths: | |
- core/tabs/** | |
merge_group: | |
workflow_dispatch: | |
jobs: | |
check-bashisms: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git fetch origin ${{ github.base_ref }} | |
- name: Install devscripts | |
run: sudo apt-get update && sudo apt-get install devscripts | |
- name: Check for bashisms in changed files | |
run: | | |
for file in $(git diff --name-only origin/${{ github.base_ref }} HEAD core/tabs); do | |
if [[ "$file" == *.sh ]] && [[ -f "$file" ]];; then | |
checkbashisms "$file" | |
fi | |
done |