8000 Merge branch 'main' of https://github.com/typescript-eslint/typescript-eslint into chore/typescript-eslint-vitest-migration · typescript-eslint/typescript-eslint@0bc9868 · GitHub
[go: up one dir, main page]

Skip to content

chore(typescript-eslint): migrate from jest to vitest #5454

chore(typescript-eslint): migrate from jest to vitest

chore(typescript-eslint): migrate from jest to vitest #5454

Workflow file for this run

name: Pull Request Labels
on:
pull_request:
types: [labeled, opened, synchronize, unlabeled]
jobs:
label:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- id: changed-stable-configs
uses: tj-actions/changed-files@v44.5.2
with:
files: packages/{eslint-plugin,typescript-eslint}/src/configs/{recommended,stylistic}*
- if: steps.changed-stable-configs.outputs.any_changed == 'true'
uses: mheap/github-action-required-labels@5.5.0
with:
add_comment: true
count: 1
labels: breaking change
message: '🤖 Beep boop! PRs that change our stable preset configs must be labeled with `breaking change`.'
mode: minimum
0