Select cell on pointerdown so clicking another cell selects it while editing #1712
Workflow file for this run
This file contains hidden or 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: ShellCheck Lint | |
| on: [pull_request, merge_group] | |
| jobs: | |
| # Reference: https://github.com/koalaman/shellcheck/wiki/GitHub-Actions#github-advanced-security-integration | |
| shellcheck: | |
| name: ShellCheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| run: find build-scripts bin -type f \( -name '*.sh' -o ! -name '*.*' \) -print -exec shellcheck {} + |