diff --git a/.ci/ct/ct.yaml b/.ci/ct/ct.yaml index 883cc3bf..83673eed 100644 --- a/.ci/ct/ct.yaml +++ b/.ci/ct/ct.yaml @@ -14,24 +14,24 @@ chart-dirs: excluded-charts-lint: [] excluded-charts-install: + - apps/alertmanager-bot + - apps/alertmanager-discord + - apps/amcrest2mqtt + - apps/facebox + - apps/factorio + - apps/foundryvtt + - apps/heimdall + - apps/multus + - apps/pod-gateway + - apps/promcord + - apps/reg + - apps/ser2sock + - apps/satisfactory + - apps/zalando-postgres-cluster + - apps/zigbee2mqtt + - apps/wireguard - incubator/sdtd - library/common - - stable/alertmanager-bot - - stable/alertmanager-discord - - stable/amcrest2mqtt - - stable/facebox - - stable/factorio - - stable/foundryvtt - - stable/heimdall - - stable/multus - - stable/pod-gateway - - stable/promcord - - stable/reg - - stable/ser2sock - - stable/satisfactory - - stable/zalando-postgres-cluster - - stable/zigbee2mqtt - - stable/wireguard chart-repos: - bitnami=https://charts.bitnami.com/bitnami diff --git a/.github/workflows/charts-lint.yaml b/.github/workflows/charts-lint.yaml index 1df07e32..46247c2f 100644 --- a/.github/workflows/charts-lint.yaml +++ b/.github/workflows/charts-lint.yaml @@ -58,6 +58,17 @@ jobs: fetch-depth: 0 ref: ${{ inputs.checkoutCommit }} + - name: Install zx + shell: bash + run: | + npm i --location=global zx + npm link zx + + - name: Check chart version update + shell: bash + run: | + zx .ci/scripts/check_chart_version.mjs "charts/${{ matrix.chart }}" + - name: Install Kubernetes tools uses: yokawasa/action-setup-kube-tools@v0.8.2 with: @@ -65,13 +76,6 @@ jobs: helmv3 helm: "${{ env.HELM_VERSION }}" - - name: Check chart version update - shell: bash - run: | - npm i -g zx - npm link zx - zx .ci/scripts/check_chart_version.mjs "charts/${{ matrix.chart }}" - - name: Set up chart-testing uses: helm/chart-testing-action@v2.2.1