diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 0000000..5220d90 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,21 @@ +language: en-US + +reviews: + profile: chill + request_changes_workflow: false + high_level_summary: true + poem: false + review_status: true + collapse_walkthrough: false + auto_review: + enabled: true + drafts: false + base_branches: + - main + + finishing_touches: + docstrings: + enabled: false + +chat: + auto_reply: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc9ad10..8722c8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: jobs: ci: - name: Lint, Test & Build + name: CI runs-on: ubuntu-latest steps: @@ -14,9 +14,9 @@ jobs: - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: - node-version: 20 + node-version: 24 cache: pnpm - name: Install dependencies diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5173fda..c5db1ae 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,7 +6,7 @@ on: jobs: publish: - name: Publish to npm + name: Publish runs-on: ubuntu-latest permissions: contents: write # required for pushing git tags @@ -17,9 +17,9 @@ jobs: - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: - node-version: 20 + node-version: 24 cache: pnpm registry-url: https://registry.npmjs.org diff --git a/LICENSE b/LICENSE index 4121f9b..bf89544 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2025 rstackio +Copyright (c) 2025 rstackio, Rudolf Kovalov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index cc254a9..745ca4e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![npm](https://img.shields.io/npm/v/@rstackio/services)](https://www.npmjs.com/package/@rstackio/services) [![CI](https://github.com/rstackio/services/actions/workflows/publish.yml/badge.svg)](https://github.com/rstackio/services/actions/workflows/publish.yml) -[![license](https://img.shields.io/npm/l/@rstackio/services)](https://github.com/rstackio/services/blob/main/LICENSE) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/rstackio/services/blob/main/LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-5.0%2B-blue)](https://www.typescriptlang.org/) --- diff --git a/package.json b/package.json index c63d0ac..922f10b 100644 --- a/package.json +++ b/package.json @@ -95,7 +95,7 @@ }, "packageManager": "pnpm@10.30.3", "engines": { - "node": ">=20.0.0", + "node": ">=24.0.0", "pnpm": ">=10.0.0" } }