chore: add Renovate configuration and workflows
Some checks failed
RenovateBot / renovate (push) Successful in 23s
Test / npm test (push) Has been cancelled

- Introduced .renovaterc for Renovate settings.
- Added renovate.config.cjs for Gitea integration.
- Created .gitea/workflows/renovate.yml for daily Renovate runs.
- Added .gitea/workflows/test.yml for CI testing.
- Removed outdated GitHub workflows and configuration files.
This commit is contained in:
2026-01-30 17:24:32 +04:00
parent 91ba9ddbc2
commit ff28f7d12c
7 changed files with 79 additions and 69 deletions

16
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,16 @@
name: Test
on: [push, pull_request]
jobs:
test:
name: npm test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- run: npm run check
- run: npm run typecheck