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 cd448ed commit 759998bCopy full SHA for 759998b
.github/workflows/check-pnpm-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 # Required to commit changes and create branches
10
+ pull-requests: write # Required to create pull requests
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