chore(deps): update dependency typescript-eslint to v8.49.0 #1930
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 & test "Lint PR title" action | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/test-lint-pr-title.yml | |
| - actions/lint-pr-title/** | |
| pull_request: | |
| paths: | |
| - .github/workflows/test-lint-pr-title.yml | |
| - actions/lint-pr-title/** | |
| types: | |
| - edited | |
| - opened | |
| - ready_for_review | |
| - synchronize | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-lint-pr-title: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@df199fb7be9f65074067a9eb93f12bb4c5547cf2 # v2.13.3 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Install bun package manager | |
| uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2 | |
| with: | |
| bun-version-file: .bun-version | |
| - name: Install lint-pr-title dependencies | |
| run: bun install --frozen-lockfile --linker hoisted --filter lint-pr-title | |
| - name: Lint | |
| run: bun run eslint actions/lint-pr-title | |
| - name: Test | |
| run: bun run --filter lint-pr-title test |