fix: move hiding only to the SectionList #56292
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 code | |
on: | |
workflow_call: | |
pull_request: | |
types: [opened, synchronize] | |
branches-ignore: [staging, production] | |
paths: ['**.js', '**.ts', '**.tsx', '**.json', '**.mjs', '**.cjs', 'config/.editorconfig', '.watchmanconfig', '.imgbotconfig'] | |
jobs: | |
lint: | |
if: ${{ github.actor != 'OSBotify' || github.event_name == 'workflow_call' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: ./.github/actions/composite/setupNode | |
- name: Lint JavaScript and Typescript with ESLint | |
run: npm run lint | |
env: | |
CI: true | |
- name: Verify there's no Prettier diff | |
run: | | |
npm run prettier -- --loglevel silent | |
if ! git diff --name-only --exit-code; then | |
# shellcheck disable=SC2016 | |
echo 'Error: Prettier diff detected! Please run `npm run prettier` and commit the changes.' | |
exit 1 | |
fi | |
- name: Run unused style searcher | |
shell: bash | |
run: ./.github/scripts/findUnusedKeys.sh |