chore(deps): update dependency typescript-eslint to v8.68.0 #1312
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: Lint | |
| on: | |
| push: | |
| paths-ignore: | |
| - '.husky/**' | |
| - '**/CHANGELOG.md' | |
| pull_request: | |
| paths-ignore: | |
| - '.husky/**' | |
| - '**/CHANGELOG.md' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: Run linters | |
| env: | |
| FORCE_COLOR: '1' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/prepare | |
| - run: npm run build | |
| - parallel: | |
| - name: ESLint | |
| run: npm run lint:eslint | |
| - name: markdownlint | |
| run: npm run lint:markdown | |
| - name: cspell | |
| run: npm run lint:spelling | |
| - name: Type check | |
| run: npm run lint:types | |
| - name: Format check | |
| run: npm run lint:prettier | |
| - name: Knip | |
| run: npm run lint:knip | |
| - name: Engine check | |
| run: npm run lint:engines | |
| - name: Run zizmor | |
| uses: zizmorcore/zizmor-action@3dc1ecc9bcb9e94e9b2c709687979e1298497054 # v0.6.2 | |
| with: | |
| persona: pedantic | |
| advanced-security: 'false' | |
| annotations: 'true' |