aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-01-30 16:24:32 +0300
committerValentin Popov <valentin@popov.link>2026-01-30 16:24:32 +0300
commitff28f7d12cf0d21835b3d1cc7ca9eed8ae9fcb56 (patch)
treeadae4f9a4033507cc85b126cac75171a33b85189 /.github/workflows
parent91ba9ddbc220dbc0904e717176c24af80388f337 (diff)
downloadpopov.link-ff28f7d12cf0d21835b3d1cc7ca9eed8ae9fcb56.tar.xz
popov.link-ff28f7d12cf0d21835b3d1cc7ca9eed8ae9fcb56.zip
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.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml28
-rw-r--r--.github/workflows/mirror.yml25
2 files changed, 0 insertions, 53 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index 2b8735b..0000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: CI
-
-on:
- push:
- branches: [master]
- pull_request:
- branches: [master]
-
-permissions:
- contents: read
-
-jobs:
- test:
- name: Test
- runs-on: ubuntu-latest
- steps:
- - name: Checkout repository
- uses: actions/checkout@v5
- - name: Set up Node.js
- uses: actions/setup-node@v5
- with:
- node-version: 22
- - name: Install dependencies
- run: npm ci
- - name: Run checks
- run: npm run check
- - name: Run type checks
- run: npm run typecheck
diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml
deleted file mode 100644
index 9fed247..0000000
--- a/.github/workflows/mirror.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Mirror
-
-on:
- push:
- branches: [master]
- pull_request:
- branches: [master]
-
-permissions:
- contents: read
-
-jobs:
- mirror:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout repository
- uses: actions/checkout@v5
- with:
- fetch-depth: 0
- - name: Mirror to remote repository
- uses: yesolutions/mirror-action@master
- with:
- REMOTE: "https://git.popov.link/popov.link.git"
- GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
- GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}