Skip to content

Commit

Permalink
👷 [#63] Add lint to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SilviaAmAm committed Dec 27, 2024
1 parent 6767531 commit 9deb7b2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run CI

on:
push:
branches:
- main
tags:
- '*'
pull_request:

jobs:
linter:
name: Check Charts Syntax
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Helm
uses: azure/[email protected]
with:
version: v3.14.4

- name: Add dependency chart repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run Helm lint
run: |
helm lint charts/**/

0 comments on commit 9deb7b2

Please sign in to comment.