Release v0.1.0: 小程序使用建议跳转腾讯文档 + 配置导入导出功能
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
ko_fi: W7W51W5EN5
|
||||
@@ -0,0 +1,47 @@
|
||||
name: Bug Report
|
||||
description: 报告一个 Bug / Report a bug
|
||||
labels: [bug]
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: 问题描述 / Description
|
||||
description: 请清楚描述遇到的问题 / Describe the bug clearly
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: steps
|
||||
attributes:
|
||||
label: 复现步骤 / Steps to Reproduce
|
||||
description: 如何复现这个问题 / How to reproduce
|
||||
placeholder: |
|
||||
1. ...
|
||||
2. ...
|
||||
3. ...
|
||||
|
||||
- type: textarea
|
||||
id: expected
|
||||
attributes:
|
||||
label: 期望行为 / Expected Behavior
|
||||
|
||||
- type: input
|
||||
id: version
|
||||
attributes:
|
||||
label: BugPack 版本 / Version
|
||||
placeholder: "0.1.0"
|
||||
|
||||
- type: input
|
||||
id: node-version
|
||||
attributes:
|
||||
label: Node.js 版本 / Node.js Version
|
||||
placeholder: ">= 18.x"
|
||||
|
||||
- type: dropdown
|
||||
id: os
|
||||
attributes:
|
||||
label: 操作系统 / OS
|
||||
options:
|
||||
- macOS
|
||||
- Windows
|
||||
- Linux
|
||||
@@ -0,0 +1,5 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Questions & Discussions
|
||||
url: https://github.com/duhuazhu/BugPack/discussions
|
||||
about: Ask questions, share ideas, or discuss BugPack here
|
||||
@@ -0,0 +1,17 @@
|
||||
name: Feature Request
|
||||
description: 提一个新功能建议 / Suggest a new feature
|
||||
labels: [enhancement]
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: 功能描述 / Description
|
||||
description: 你希望 BugPack 增加什么功能?/ What feature would you like?
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: use-case
|
||||
attributes:
|
||||
label: 使用场景 / Use Case
|
||||
description: 这个功能解决什么问题?/ What problem does this solve?
|
||||
@@ -0,0 +1,13 @@
|
||||
## 改了什么 / What Changed
|
||||
|
||||
<!-- 简要描述你的改动 / Brief description of changes -->
|
||||
|
||||
## 为什么改 / Why
|
||||
|
||||
<!-- 解决了什么问题或实现了什么功能 / What problem does this solve -->
|
||||
|
||||
## 测试 / Testing
|
||||
|
||||
- [ ] `npx tsc --noEmit` 通过
|
||||
- [ ] `npm run build` 通过
|
||||
- [ ] 已在本地测试功能正常
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ">= 18"
|
||||
cache: npm
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Type check
|
||||
run: npx tsc --noEmit
|
||||
|
||||
- name: Build
|
||||
run: npm run build
|
||||
Reference in New Issue
Block a user