Skip to content
This repository has been archived by the owner on Dec 15, 2024. It is now read-only.

Commit

Permalink
ci: add lint validation on pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
blumamir committed Mar 16, 2024
1 parent b69bb20 commit 488158c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Release Charts

on:
pull_request:

jobs:
lint-charts:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Helm
uses: azure/setup-helm@v4
- name: Lint Charts
run: helm lint charts/*

0 comments on commit 488158c

Please sign in to comment.