Skip to content

Commit 0fe26d1

Browse files
chore: lint helm chart
1 parent 6b389c2 commit 0fe26d1

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,22 @@ jobs:
244244
name: Lint PWA
245245
working-directory: pwa
246246
run: pnpm lint
247+
248+
# Lint HELM
249+
-
250+
name: Cache Helm Dependencies
251+
uses: actions/cache@v3
252+
with:
253+
path: helm/api-platform/charts/
254+
key: ${{ runner.os }}-helm-dependencies-${{ github.run_id }}
255+
restore-keys: |
256+
${{ runner.os }}-helm-dependencies-
257+
-
258+
name: Build Helm Dependencies
259+
run: |
260+
helm repo add bitnami https://charts.bitnami.com/bitnami/
261+
helm repo add stable https://charts.helm.sh/stable/
262+
helm dependency build ./helm/api-platform
263+
-
264+
name: Lint Helm
265+
run: helm lint ./helm/api-platform/

.github/workflows/deploy.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,12 @@ jobs:
7676
key: ${{ runner.os }}-helm-dependencies-${{ github.run_id }}
7777
restore-keys: |
7878
${{ runner.os }}-helm-dependencies-
79-
# https://github.com/helm/helm/issues/8036
8079
-
8180
name: Build Helm Dependencies
8281
run: |
8382
helm repo add bitnami https://charts.bitnami.com/bitnami/
8483
helm repo add stable https://charts.helm.sh/stable/
8584
helm dependency build ./helm/api-platform
86-
-
87-
name: Lint Helm
88-
run: helm lint ./helm/api-platform/
8985
# Release name MUST start with a letter
9086
-
9187
name: Deploy

0 commit comments

Comments
 (0)