File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -244,3 +244,22 @@ jobs:
244
244
name : Lint PWA
245
245
working-directory : pwa
246
246
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/
Original file line number Diff line number Diff line change @@ -76,16 +76,12 @@ jobs:
76
76
key : ${{ runner.os }}-helm-dependencies-${{ github.run_id }}
77
77
restore-keys : |
78
78
${{ runner.os }}-helm-dependencies-
79
- # https://github.com/helm/helm/issues/8036
80
79
-
81
80
name : Build Helm Dependencies
82
81
run : |
83
82
helm repo add bitnami https://charts.bitnami.com/bitnami/
84
83
helm repo add stable https://charts.helm.sh/stable/
85
84
helm dependency build ./helm/api-platform
86
- -
87
- name : Lint Helm
88
- run : helm lint ./helm/api-platform/
89
85
# Release name MUST start with a letter
90
86
-
91
87
name : Deploy
You can’t perform that action at this time.
0 commit comments