diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index 067e0d3..61fe548 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -14,7 +14,7 @@ runs: using: composite steps: - if: inputs.node-install == 'true' - name: Install Node.js v25 + name: Install Node.js uses: actions/setup-node@v6 with: node-version: 25 diff --git a/.github/labels.yml b/.github/labels.yml index 82f90a9..67680ba 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -14,6 +14,10 @@ description: "Changes to our CI configuration files and scripts" color: "721cdb" +- name: "dependencies" + description: "Update of dependencies" + color: "6f38c2" + - name: "documentation" description: "Improvements or additions to documentation" color: "0075ca" diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..2862859 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "baseBranches": ["main"], + "rebaseWhen": "conflicted", + "labels": ["dependencies"], + "reviewers": ["Exeloo"] +} diff --git a/.prettierignore b/.prettierignore index b368ec6..6566926 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,11 +1,12 @@ -# Ignore files for PNPM, NPM and YARN +.idea/ +.vscode/ + +dist/ +node_modules/ + pnpm-lock.yaml -package-lock.json -yarn.lock -bun.lock pnpm-workspace.yaml -node_modules/ -dist/ -coverage/ CHANGELOG.md + +coverage/ diff --git a/package.json b/package.json index b1f02e5..3e9e0e4 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,7 @@ }, "lint-staged": { "**": [ - "prettier --write" + "prettier --ignore-unknown --write" ], "src/**/*.ts": [ "eslint --fix"