forked from huggingface/dataset-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (26 loc) · 771 Bytes
/
Copy pathchart-pr.yml
File metadata and controls
27 lines (26 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 The HuggingFace Authors.
name: chart PR
on:
pull_request:
paths:
- "chart/**"
- ".github/workflows/chart-pr.yml"
jobs:
code-quality-helm:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Update dependencies
run: helm dependencies update
working-directory: chart
- name: Lint chart with default values
run: helm lint
working-directory: chart
- name: Lint chart with staging values
run: helm lint --values env/staging.yaml
working-directory: chart
- name: Lint chart with prod values
run: helm lint --values env/prod.yaml
working-directory: chart