Skip to content

Commit a5fbb75

Browse files
author
Stéphan Kochen
authored
Merge pull request #5 from AngryBytes/renovate/all
Update dependency @types/node to v24.10.8
2 parents d390c5d + 7cc0c5a commit a5fbb75

4 files changed

Lines changed: 478 additions & 3 deletions

File tree

.github/workflows/check.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: [push]
2+
jobs:
3+
check:
4+
runs-on: ubuntu-latest
5+
steps:
6+
- name: Checkout
7+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
8+
9+
- name: Setup Node.js
10+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
11+
with:
12+
node-version: "24.11.1"
13+
cache: "npm"
14+
15+
- name: Check
16+
run: npm ci

.renovaterc.json5

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
packageRules: [
3+
// Don't pin library dependencies.
4+
{
5+
matchManagers: ["npm"],
6+
matchDepTypes: ["dependencies"],
7+
rangeStrategy: "replace",
8+
},
9+
],
10+
}

0 commit comments

Comments
 (0)