Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renovate Self? #129

Merged
merged 6 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
configMigration: true,
extends: ['github>seek-oss/rynovate'],
}
13 changes: 8 additions & 5 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,19 @@ jobs:
- name: Check out repo
uses: actions/checkout@v3

- name: Set up Node.js 18.x
- name: Set up Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Set up pnpm
run: corepack enable pnpm && corepack install

- name: Install dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Test
run: yarn test
run: pnpm test

- name: Lint
run: yarn lint
run: pnpm lint
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pnpm-lock.yaml
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
"devDependencies": {
"concurrently": "6.2.0",
"prettier": "2.3.0",
"re2": "1.16.0",
"renovate": "36.42.0"
"re2": "1.21.4",
"renovate": "38.124.1"
},
"license": "MIT",
"prettier": {
"singleQuote": true,
"tabWidth": 2
},
"packageManager": "[email protected]",
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check .",
Expand Down
Loading
Loading