chore(web): пересобранный бандл в пакете #136
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: lint | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install shellcheck | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -y --no-install-recommends shellcheck | |
| shellcheck --version | head -3 | |
| - name: Run lint pipeline | |
| run: make lint | |
| # Быстрые shell-тесты (стабы, без сети): install-singbox + bootstrap. Секунды. | |
| - name: Shell tests | |
| run: make test-shell |