🚦 Add CircleCI configuration to lint this Helm chart

This commit is contained in:
Devin Canterberry
2020-11-13 20:28:14 -08:00
parent 021890ede0
commit b0e26e9d2b

22
.circleci/config.yml Normal file
View File

@@ -0,0 +1,22 @@
version: 2.1
jobs:
setup:
docker:
- image: twuni/helm:3.4.1
steps:
- checkout
lint:
docker:
- image: twuni/helm:3.4.1
steps:
- run:
command: helm lint --strict
name: lint
workflows:
version: 2
test:
jobs:
- setup
- lint:
requires:
- setup