Tor: return changes that make it run well on wayland #1884
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 | |
| on: | |
| pull_request_target: | |
| branches: | |
| - master | |
| paths: | |
| - api | |
| - createapp | |
| - gui | |
| - install | |
| - manage | |
| - preload | |
| - settings | |
| - uninstall | |
| - updater | |
| - etc/preload-daemon | |
| - etc/runonce-entries | |
| - etc/terminal-run | |
| - apps/*/install | |
| - apps/*/install-32 | |
| - apps/*/install-64 | |
| - apps/*/uninstall | |
| push: | |
| branches: '**' | |
| paths: | |
| - api | |
| - createapp | |
| - gui | |
| - install | |
| - manage | |
| - preload | |
| - settings | |
| - uninstall | |
| - updater | |
| - etc/preload-daemon | |
| - etc/runonce-entries | |
| - etc/terminal-run | |
| - apps/*/install | |
| - apps/*/install-32 | |
| - apps/*/install-64 | |
| - apps/*/uninstall | |
| workflow_dispatch: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - name: Checkout pi-apps repo | |
| uses: actions/checkout@v4 | |
| if: github.event_name != 'pull_request_target' | |
| - name: Checkout pi-apps PR repo | |
| uses: actions/checkout@v4 | |
| if: github.event_name == 'pull_request_target' | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Check vital scripts for errors | |
| run: | | |
| cd $GITHUB_WORKSPACE | |
| sudo apt install shellcheck wget -y | |
| for file in api createapp gui install manage preload settings uninstall updater etc/preload-daemon etc/runonce-entries etc/terminal-run apps/*/install apps/*/install-32 apps/*/install-64 apps/*/uninstall; do | |
| if ! shellcheck "$file" --color=always | sed '0,/'$(echo -e "\033")'\[31m/!{q1}' ; then | |
| exit 1 | |
| fi | |
| done |