fix(theme): light & dark mode checkbox doesn't announce state switches #9223
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: | |
pull_request: | |
branches: | |
- main | |
- docusaurus-v** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Lint | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Node | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version: lts/* | |
cache: yarn | |
- name: Installation | |
run: yarn | |
# run: yarn install --immutable # Fails if yarn.lock is modified (unfortunately only works for Yarn 2, and --frozen-lockfile is not the same!) | |
- name: Check immutable yarn.lock | |
run: git diff --exit-code | |
- name: Check for suspicious yarn.lock | |
# for allowed aliases, see https://github.com/yargs/cliui/pull/139/files#r1670711112 | |
run: yarn lockfile-lint --path yarn.lock --type yarn --allowed-hosts yarn --validate-https --validate-package-names --validate-integrity --empty-hostname=false --allowed-package-name-aliases serve-handler react-loadable string-width-cjs strip-ansi-cjs wrap-ansi-cjs | |
- name: Lint | |
run: | | |
echo "::add-matcher::.github/workflows/cspell-problem-matcher.json" | |
yarn lint:ci | |
- name: Prettier Code | |
run: yarn format:diff |