mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-21 09:14:42 +08:00
fix: airplay
This commit is contained in:
14
.github/FUNDING.yml
vendored
14
.github/FUNDING.yml
vendored
@@ -1,14 +0,0 @@
|
||||
# !STARTERCONF You can delete this file :) Your support is much appreciated!
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: theodorusclarence
|
||||
patreon: # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
otechie: # Replace with a single Otechie username
|
||||
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
||||
custom: ['https://saweria.co/theodorusclarence']
|
||||
9
.github/issue-branch.yml
vendored
9
.github/issue-branch.yml
vendored
@@ -1,9 +0,0 @@
|
||||
# https://github.com/robvanderleek/create-issue-branch#option-2-configure-github-action
|
||||
|
||||
# ex: i4-lower_camel_upper
|
||||
branchName: 'i${issue.number}-${issue.title,}'
|
||||
branches:
|
||||
- label: epic
|
||||
skip: true
|
||||
- label: debt
|
||||
skip: true
|
||||
15
.github/pull_request_template.md
vendored
15
.github/pull_request_template.md
vendored
@@ -1,15 +0,0 @@
|
||||
# Description & Technical Solution
|
||||
|
||||
Describe problems, if any, clearly and concisely.
|
||||
Summarize the impact to the system.
|
||||
Please also include relevant motivation and context.
|
||||
Please include a summary of the technical solution and how it solves the problem.
|
||||
|
||||
# Checklist
|
||||
|
||||
- [ ] I have commented my code, particularly in hard-to-understand areas.
|
||||
- [ ] Already rebased against main branch.
|
||||
|
||||
# Screenshots
|
||||
|
||||
Provide screenshots or videos of the changes made if any.
|
||||
14
.github/workflows/create-branch.yml
vendored
14
.github/workflows/create-branch.yml
vendored
@@ -1,14 +0,0 @@
|
||||
name: Create Branch from Issue
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [assigned]
|
||||
|
||||
jobs:
|
||||
create_issue_branch_job:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Create Issue Branch
|
||||
uses: robvanderleek/create-issue-branch@main
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
16
.github/workflows/issue-autolink.yml
vendored
16
.github/workflows/issue-autolink.yml
vendored
@@ -1,16 +0,0 @@
|
||||
name: 'Issue Autolink'
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened]
|
||||
|
||||
jobs:
|
||||
issue-links:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: tkt-actions/add-issue-links@v1.8.1
|
||||
with:
|
||||
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
||||
branch-prefix: 'i'
|
||||
resolve: 'true'
|
||||
44
.github/workflows/lint.yml
vendored
44
.github/workflows/lint.yml
vendored
@@ -1,44 +0,0 @@
|
||||
name: Code Check
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request: {}
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.job }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: ⬣ ESLint, ʦ TypeScript, 💅 Prettier, and 🃏 Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: ⬇️ Checkout repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: 🤌 Setup pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 9
|
||||
|
||||
- name: ⎔ Setup node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: 'pnpm'
|
||||
|
||||
- name: 📥 Download deps
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: 🔬 Lint
|
||||
run: pnpm run lint:strict
|
||||
|
||||
- name: 🔎 Type check
|
||||
run: pnpm run typecheck
|
||||
|
||||
- name: 💅 Prettier check
|
||||
run: pnpm run format:check
|
||||
|
||||
- name: 🃏 Run jest
|
||||
run: pnpm run test
|
||||
17
.github/workflows/release-please.yml
vendored
17
.github/workflows/release-please.yml
vendored
@@ -1,17 +0,0 @@
|
||||
name: release-please
|
||||
on:
|
||||
# !STARTERCONF Choose your preferred event
|
||||
# !Option 1: Manual Trigger from GitHub
|
||||
workflow_dispatch:
|
||||
# !Option 2: Release on every push on main branch
|
||||
# push:
|
||||
# branches:
|
||||
# - main
|
||||
jobs:
|
||||
release-please:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: google-github-actions/release-please-action@v3
|
||||
with:
|
||||
release-type: node
|
||||
package-name: release-please-action
|
||||
Reference in New Issue
Block a user