Skip to content

Commit

Permalink
chore: renovate automerge and node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
SiTaggart committed Aug 5, 2023
1 parent eec9acd commit 455bfc4
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 11 deletions.
8 changes: 7 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"extends": ["config:base", ":pinVersions", "group:allNonMajor", "schedule:earlyMondays"],
"extends": [
"config:base",
":automergeMinor",
":pinVersions",
"group:allNonMajor",
"schedule:earlyMondays"
],
"lockFileMaintenance": { "enabled": true }
}
4 changes: 3 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -34,3 +34,5 @@ jobs:
run: yarn install
- name: Lint the lint configs
run: yarn lint
- name: Prettier
run: yarn prettier
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
needs: lint
strategy:
matrix:
node-version: [14.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/
.husky/
.yarn/
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
...require('@sitaggart/prettier-config'),
}
};
4 changes: 1 addition & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"packages": [
"packages/*"
],
"packages": ["packages/*"],
"version": "independent",
"npmClient": "yarn",
"command": {
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@
"postinstall": "husky install",
"lerna": "lerna",
"lint": "eslint ./packages/**/*.js",
"prettier": "prettier -c .",
"release": "yarn lerna publish -m 'chore(release): publish' --conventional-commits --yes --create-release github"
},
"workspaces": [
"packages/**"
],
"engines": {
"node": "20.x"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.22.9",
Expand All @@ -19,7 +23,7 @@
"@sitaggart/eslint-config": "workspace:*",
"@sitaggart/prettier-config": "workspace:*",
"eslint": "8.46.0",
"husky": "^8.0.0",
"husky": "^8.0.3",
"lerna": "7.1.4",
"precise-commits": "1.0.2",
"prettier": "3.0.1"
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5785,7 +5785,7 @@ __metadata:
languageName: node
linkType: hard

"husky@npm:latest":
"husky@npm:^8.0.3":
version: 8.0.3
resolution: "husky@npm:8.0.3"
bin:
Expand Down Expand Up @@ -8916,7 +8916,7 @@ __metadata:
"@sitaggart/eslint-config": "workspace:*"
"@sitaggart/prettier-config": "workspace:*"
eslint: 8.46.0
husky: latest
husky: ^8.0.3
lerna: 7.1.4
precise-commits: 1.0.2
prettier: 3.0.1
Expand Down

0 comments on commit 455bfc4

Please sign in to comment.