-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (30 loc) · 1.04 KB
/
Copy pathdead-code.yml
File metadata and controls
38 lines (30 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Dead-code audit
on:
schedule:
# Knip is deliberately periodic rather than a PR gate: this monorepo has
# convention-loaded integrations and generated entry points, so config
# changes deserve review instead of blocking unrelated pull requests.
- cron: "17 6 * * 1"
workflow_dispatch:
concurrency:
group: dead-code-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
jobs:
knip:
name: unused files and dependencies
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Audit unused files and dependencies
run: pnpm check-dead-code