Merge branch 'main' into main

This commit is contained in:
OrdisPrime 2023-06-14 02:05:55 +02:00 committed by GitHub
commit 5403e4a26e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1611 additions and 1582 deletions

6
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"

23
.github/workflows/prettier.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Prettier
on:
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
with:
ref: ${{ github.head_ref }}
- name: Setup Node.js environment
uses: actions/setup-node@v2.5.2
with:
node-version: "18.x"
- run: npm ci
- run: npm run prettier
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4.16.0
with:
commit_message: Apply prettier changes
branch: ${{ github.head_ref }}