Skip to content

test: hardcode the 1.10.4 RC image, chart and catalog index #3884

test: hardcode the 1.10.4 RC image, chart and catalog index

test: hardcode the 1.10.4 RC image, chart and catalog index #3884

Workflow file for this run

name: E2E Bash
on:
pull_request:
branches:
- "main"
- "release-*"
paths:
- '.ci/**'
jobs:
lint:
name: ShellCheck and Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: ".nvmrc"
- name: Install dependencies
working-directory: ./.ci
run: yarn install
- name: Run ShellCheck check
working-directory: ./.ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn shellcheck
- name: Run Prettier check
working-directory: ./.ci
run: yarn prettier:check