chore(deps): update dependency eslint to v9.39.1 #3615
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: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| name: ESLint | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: ["lts/*"] | |
| steps: | |
| - name: π§± Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: π© Setup PNPM | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| standalone: true | |
| - name: π© Setup Node ${{ matrix.node }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: "pnpm" | |
| - name: π Install dependencies | |
| run: pnpm install | |
| - name: π Run ESLint | |
| run: pnpm lint |