fix: typo in chart config attribute #7947
Workflow file for this run
This file contains hidden or 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
| # needed to securely identify the workflow | |
| name: autofix.ci | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| merge_group: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| code: | |
| name: π€ Autofix code | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: lts/* | |
| - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # 5e1c8eafbd745f64b1ef30a7d7ed7965034c486c | |
| name: π§ Install pnpm | |
| - name: π¦ Install dependencies | |
| run: pnpm install | |
| - name: π¨ Check for non-RTL/non-a11y CSS classes | |
| run: pnpm vp run lint:css | |
| - name: π Compare translations | |
| run: pnpm vp run i18n:check | |
| - name: π Update lunaria data | |
| run: pnpm vp run build:lunaria | |
| - name: π Fix lint errors | |
| run: pnpm vp run lint:fix | |
| - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 # 635ffb0c9798bd160680f18fd73371e355b85f27 |