ci: null commit to trigger pipelines #11
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
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Task | |
| uses: arduino/setup-task@v2 | |
| with: | |
| version: 3.x | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup Helm | |
| uses: azure/setup-helm@v4 | |
| with: | |
| version: v3.19.0 | |
| - name: Validate Helm charts | |
| run: task helm-validate | |
| - name: Install helm-unittest plugin | |
| run: | | |
| if ! helm plugin list | awk '{print $1}' | grep -qx unittest; then | |
| helm plugin install https://github.com/helm-unittest/helm-unittest | |
| fi | |
| - name: Run chart unit tests | |
| run: task helm-unittest |