From ff28f7d12cf0d21835b3d1cc7ca9eed8ae9fcb56 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 30 Jan 2026 17:24:32 +0400 Subject: chore: add Renovate configuration and workflows - 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. --- .gitea/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/test.yml (limited to '.gitea/workflows/test.yml') diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..982f712 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -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 -- cgit v1.2.3