Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This marks the default owner group of all files in this repository
* @wmde/funtech-core
40 changes: 40 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
# look for major+minor dependency updates on a weekly basis
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests

# this line is needed as a workaround to have two groups of updates for the same
# package ecosystem. See https://github.com/dependabot/dependabot-core/issues/1778
# for the feature request to have a dependabot group for each semver type
target-branch: main

schedule:
interval: "weekly"
groups:
minor-version-updates:
update-types:
- minor
ignore:
- dependency-name: "*"
update-types:
- "version-update:semver-patch"

# bundle patch updates together on a monthly basis
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "monthly"
day: "tuesday"
groups:
patch-updates:
update-types:
- patch
ignore:
- dependency-name: "*"
update-types:
- "version-update:semver-minor"
- "version-update:semver-major"
41 changes: 0 additions & 41 deletions .gitlab-ci.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .gitlab/renovate.json

This file was deleted.

12 changes: 12 additions & 0 deletions .woodpecker/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
steps:
- name: build
when:
- event: [ push, pull_request, cron, manual ]
branch:
exclude: [ dependabot/* ]
image: node:22-alpine
commands:
- npm ci
- npm run lint
- npm run test:unit
- npm run build
Loading