Skip to content

Remove network fees related js code from the rest module (#12568) #17691

Remove network fees related js code from the rest module (#12568)

Remove network fees related js code from the rest module (#12568) #17691

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: Charts
on:
pull_request:
branches: [main, release/**]
paths: [charts/**]
push:
branches: [main, release/**]
tags: [v*]
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
lint:
runs-on: hiero-mirror-node-linux-large
steps:
- name: Harden Runner
uses: step-security/harden-runner@df199fb7be9f65074067a9eb93f12bb4c5547cf2 # v2.13.3
with:
egress-policy: audit
- name: Setup Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: "3.13"
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install Helm
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
with:
version: "3.19.2"
- name: Install ct
uses: helm/chart-testing-action@6ec842c01de15ebb84c8627d2744a0c2f2755c9f # v2.8.0
- name: Run lint
run: ct lint --config .github/ct.yaml --all
install:
runs-on: hiero-mirror-node-linux-large
steps:
- name: Harden Runner
uses: step-security/harden-runner@df199fb7be9f65074067a9eb93f12bb4c5547cf2 # v2.13.3
with:
egress-policy: audit
- name: Setup Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: "3.13"
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install Helm
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
with:
version: "3.19.2"
- name: Setup Kind
uses: helm/kind-action@92086f6be054225fa813e0a4b13787fc9088faab # v1.13.0
with:
kubectl_version: v1.32.3
version: v0.27.0
- name: Install JDK
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
with:
distribution: "temurin"
java-version: 21
- name: Install Stackgres
run: |
helm repo add stackgres https://stackgres.io/downloads/stackgres-k8s/stackgres/helm
helm install stackgres stackgres/stackgres-operator --version 1.17.0 --create-namespace -n stackgres
- name: Install ct
uses: helm/chart-testing-action@6ec842c01de15ebb84c8627d2744a0c2f2755c9f # v2.8.0
- name: Install chart
run: ct install --config .github/ct.yaml --charts=charts/hedera-mirror --helm-extra-args="--timeout 10m"