Skip to content

chore(deps): bump undici from 7.18.2 to 7.24.0 #10

chore(deps): bump undici from 7.18.2 to 7.24.0

chore(deps): bump undici from 7.18.2 to 7.24.0 #10

Workflow file for this run

name: Lint Dependencies
permissions:
contents: read
on:
pull_request:
branches: [main, '**']
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint-deps:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout Repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js 20
uses: actions/setup-node@v6
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check for ghost dependencies
run: pnpm run lint:deps