Skip to content

Commit d881b88

Browse files
authored
Renovate Self? (#129)
* renovate self * bump * copy skuba * chill * Update renovate.json5 * Update renovate.json5
1 parent ea2055f commit d881b88

File tree

6 files changed

+7028
-5989
lines changed

6 files changed

+7028
-5989
lines changed

.github/renovate.json5

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
configMigration: true,
3+
extends: ['github>seek-oss/rynovate'],
4+
}

.github/workflows/validate.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,19 @@ jobs:
1616
- name: Check out repo
1717
uses: actions/checkout@v3
1818

19-
- name: Set up Node.js 18.x
19+
- name: Set up Node.js 20.x
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: 18.x
22+
node-version: 20.x
23+
24+
- name: Set up pnpm
25+
run: corepack enable pnpm && corepack install
2326

2427
- name: Install dependencies
25-
run: yarn install --frozen-lockfile
28+
run: pnpm install --frozen-lockfile
2629

2730
- name: Test
28-
run: yarn test
31+
run: pnpm test
2932

3033
- name: Lint
31-
run: yarn lint
34+
run: pnpm lint

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pnpm-lock.yaml

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
"devDependencies": {
33
"concurrently": "6.2.0",
44
"prettier": "2.3.0",
5-
"re2": "1.16.0",
6-
"renovate": "36.42.0"
5+
"re2": "1.21.4",
6+
"renovate": "38.124.1"
77
},
88
"license": "MIT",
99
"prettier": {
1010
"singleQuote": true,
1111
"tabWidth": 2
1212
},
13+
"packageManager": "[email protected]",
1314
"scripts": {
1415
"format": "prettier --write .",
1516
"lint": "prettier --check .",

0 commit comments

Comments
 (0)