build(deps): bump eslint-plugin-unicorn from 64.0.0 to 72.0.0 #2032
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: CI | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| - beta | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install | |
| uses: ./.github/composite-actions/install | |
| - name: Run commitlint check | |
| if: always() | |
| run: npx commitlint -f ${{ github.event.pull_request.base.sha }} | |
| - name: Run ESLint check | |
| if: always() | |
| run: npm run lint | |
| - name: Run Prettier check | |
| if: always() | |
| run: npm run format | |
| - name: Check types | |
| if: always() | |
| run: npm run typecheck | |
| - name: Check dead code | |
| if: always() | |
| run: npm run knip |