Add WebUI panel health insight #206
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: Validate Kam Module | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: kam-validate-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Setup kam | |
| uses: MemDeco-WG/setup-kam@v3 | |
| with: | |
| github-token: ${{ github.token }} | |
| enable-cache: 'true' | |
| cache-targets: cargo,kam | |
| install-commitizen: 'false' | |
| warn-private-key: 'false' | |
| - name: Install lint dependencies | |
| run: sudo apt-get update && sudo apt-get install -y shellcheck jq python3-yaml | |
| - name: Validate repository | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| kam validate | |
| kam check |