Indicate that crdsToDiscover is a mapping parameter and not a than helm flag #6771
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: Verify Docs Build | |
on: | |
pull_request: | |
types: | |
- "opened" | |
- "synchronize" | |
- "reopened" | |
- "ready_for_review" | |
- "converted_to_draft" | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
name: Test successful production build | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: true | |
- name: Install dependencies | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- run: npm ci | |
- name: Build | |
run: npm run build |