feat: improve VPN UX, parsing, docs and quality workflow #1
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: Quality | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| quality: | |
| name: Lint Markdown + Validate QML | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install Qt tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y qt6-declarative-dev-tools | |
| - name: Lint Markdown | |
| run: bash scripts/lint-markdown.sh | |
| - name: Validate QML syntax | |
| run: bash scripts/validate-qml.sh |