Skip to content

Commit 7a9a7cb

Browse files
authored
refactor: added check for overrides (#73)
* refactor: added check * refactor: added missing pnpm setup * refactor: corrected to a specific version
1 parent a09ab59 commit 7a9a7cb

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/check-overrides.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Check pnpm Overrides
2+
3+
on:
4+
workflow_dispatch: # manual run
5+
schedule:
6+
- cron: "0 3 * * 0" # weekly
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
check-overrides:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0 # needed for PR creation
20+
21+
- name: Install pnpm
22+
uses: pnpm/action-setup@v4
23+
24+
- name: Setup Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version-file: ".nvmrc"
28+
cache: "pnpm"
29+
30+
- uses: mfranzke/[email protected]

0 commit comments

Comments
 (0)