We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a09ab59 commit 7a9a7cbCopy full SHA for 7a9a7cb
.github/workflows/check-overrides.yml
@@ -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
27
+ node-version-file: ".nvmrc"
28
+ cache: "pnpm"
29
30
+ - uses: mfranzke/[email protected]
0 commit comments