-
Notifications
You must be signed in to change notification settings - Fork 6
88 lines (73 loc) · 2.58 KB
/
lint-test.yaml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Lint and Test Charts
on: pull_request
jobs:
lint-test:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure test-values
env:
MNEMONIC: ${{ secrets.MNEMONIC }}
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
TEST_VALUES_PATH: ./charts/rollups-node/ci/test-values.yaml
LOCALNODE_VALUES_PATH: ./charts/rollups-node/ci/localnode-values.yaml
run: |
cat $TEST_VALUES_PATH.tpl | envsubst > $TEST_VALUES_PATH
cat $LOCALNODE_VALUES_PATH.tpl | envsubst > $LOCALNODE_VALUES_PATH
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.12.1
- uses: actions/setup-python@v4
with:
python-version: "3.9"
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.base_ref }})
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Add dependancies
run: |
cd ./charts/rollups-node
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependency build
- name: Run chart-testing (lint)
run: ct lint --target-branch ${{ github.base_ref }}
- name: Create kind cluster
uses: helm/kind-action@v1.8.0
if: steps.list-changed.outputs.changed == 'true'
- name: Install postgres service to kind cluster
if: steps.list-changed.outputs.changed == 'true'
run: |
helm install postgresql bitnami/postgresql \
--namespace default \
--wait \
--set auth.enablePostgresUser=true \
--set auth.postgresPassword=postgres \
--set image.tag=13.9.0-debian-11-r27
- name: Install redis service to kind cluster
if: steps.list-changed.outputs.changed == 'true'
run: |
helm install redis bitnami/redis \
--namespace default \
--wait \
--set auth.enabled=false \
--set architecture=replication \
--set image.tag=6.2-debian-11
- name: Run chart-testing (install)
run: |
ct install \
--debug \
--namespace default \
--target-branch ${{ github.event.repository.default_branch }}