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
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: pleek91, stackoverfloweth
35 changes: 35 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
groups:
build-tools:
patterns:
- "vite"
- "vite-plugin-dts"
- "@vitejs/plugin-vue"
- "typescript"
- "vue-tsc"
testing:
patterns:
- "vitest"
- "@vue/test-utils"
- "happy-dom"
docs:
patterns:
- "vitepress"
- "typedoc"
- "typedoc-plugin-markdown"
- "typedoc-vitepress-theme"
linting:
patterns:
- "eslint"
- "@kitbag/eslint-config"
- "globals"
19 changes: 19 additions & 0 deletions .github/workflows/notify-stars.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Stars Notification to Discord

on:
watch:
types: [started]

jobs:
notify:
name: Notify Discord
runs-on: ubuntu-latest
steps:
- uses: kitbagjs/actions-notify-stars@main
with:
DISCORD_WEBHOOK_URL: ${{secrets.DISCORD_WEBHOOK_URL}}
GITHUB_REPOSITORY: ${{github.event.repository.name}}
GITHUB_REPOSITORY_STARS: ${{github.event.repository.stargazers_count}}
GITHUB_SENDER_LOGIN: ${{github.event.sender.login}}
GITHUB_SENDER_AVATAR_URL: ${{github.event.sender.avatar_url}}
GITHUB_SENDER_HTML_URL: ${{github.event.sender.html_url}}
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Create Release

jobs:
release:
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: kitbagjs/actions-create-release@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Tests

on: [pull_request]

jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest

steps:
- name: Setup
id: setup
uses: kitbagjs/actions-setup-project@main

- name: Run tests
run: npm run test

types:
name: Types
runs-on: ubuntu-latest

steps:
- name: Setup
id: setup
uses: kitbagjs/actions-setup-project@main

- name: Run tsc
run: npm run types