fix(button): remove wrong hover classes to restore default hover behaviour #4820
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
| name: autofix.ci | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| autofix: | |
| timeout-minutes: 10 | |
| runs-on: ${{ vars.RUNNER_IMAGE || 'ubuntu-latest' }} | |
| steps: | |
| - name: Checkout Code 🛎 | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm 🌟 | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node 📦 | |
| uses: actions/setup-node@v4 | |
| - name: Install dependencies 📦 | |
| run: pnpm install | |
| - name: Lint JS | |
| run: pnpm dlx oxlint@latest --deny-warnings |