remove indexer region files settings #40
This file contains 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: Main CI Workflow | |
on: push | |
jobs: | |
build-test-helm-chart: | |
name: Build, Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download Helm Chart Dependencies | |
run: | | |
helm dep up ./chart | |
- name: Lint Helm Chart | |
run: | | |
echo "test prod config..." | |
helm template ./chart -f ./config.yaml 1>/dev/null | |
echo "test prod config done." |