Skip to content

Chore: Remove unused dependency overrides #14376

Chore: Remove unused dependency overrides

Chore: Remove unused dependency overrides #14376

Workflow file for this run

name: 'Check PR labels'
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
- edited
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
permissions:
pull-requests: write
jobs:
check-labels:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-x64
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup nodejs
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: ./.github/actions/check-labels/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: ./.github/actions/check-labels
- name: Check labels
uses: ./.github/actions/check-labels