fix: take indices to messages as a hint #8537
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: Lint | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
merge_group: | |
concurrency: | |
group: lint-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check formatting with Prettier | |
uses: Nerixyz/actionsx-prettier@v3-adj | |
with: | |
# prettier CLI arguments. | |
args: --write . | |
- name: Show diff | |
run: git --no-pager diff --exit-code --color=never | |
shell: bash | |
- name: Check Theme files | |
run: | | |
npm i ajv-cli | |
npx -- ajv validate -s docs/ChatterinoTheme.schema.json -d "resources/themes/*.json" |