Update docs links and add CA conditional #97
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| jobs: | |
| check-helm-formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| id: checkout-code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: azure/setup-helm@v3 | |
| id: helm-install | |
| with: | |
| version: "v3.11.1" | |
| - name: Fides - Configure Helm | |
| id: helm-configure | |
| run: | | |
| helm repo add bitnami https://charts.bitnami.com/bitnami | |
| helm repo add eks https://aws.github.io/eks-charts | |
| - name: Lint Helm - Fides | |
| working-directory: ./fides/ | |
| id: helm-lint | |
| run: helm lint | |
| - name: Fides - Check Helm Dependencies | |
| working-directory: ./fides/ | |
| id: helm-dependency | |
| run: helm dependency build | |
| - name: Lint Helm - Fides-minimal | |
| working-directory: ./fides-minimal/ | |
| id: helm-lint-minimal | |
| run: helm lint | |
| - name: Fides - Check Helm Dependencies | |
| working-directory: ./fides-minimal/ | |
| id: helm-dependency-minimal | |
| run: helm dependency build |