Pass requisite data into graph proxy query resolvers #2268
Workflow file for this run
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: Helm Charts | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
# Deduplicate jobs from pull requests and branch pushes within the same repo. | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup Helm | |
uses: azure/[email protected] | |
- name: Setup Chart Testing | |
uses: helm/[email protected] | |
- name: Install chart dependencies | |
run: | | |
helm repo add vcluster https://charts.loft.sh | |
helm repo add argo https://argoproj.github.io/argo-helm | |
helm repo add bitnami https://charts.bitnami.com/bitnami | |
helm repo add oauth2-proxy https://oauth2-proxy.github.io/manifests | |
- name: Lint | |
run: > | |
ct | |
lint | |
--target-branch=${{ github.event.repository.default_branch }} | |
--validate-maintainers=false |