-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #503 from skyclouds2001/dev
Release v1.0.0
- Loading branch information
Showing
42 changed files
with
5,302 additions
and
5,416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"projectName": "vite-template-sky", | ||
"projectOwner": "skyclouds2001", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"files": ["README.md"], | ||
"imageSize": 100, | ||
"commit": false, | ||
"commitConvention": "angular", | ||
"contributorsPerLine": 7, | ||
"contributorsSortAlphabetically": false, | ||
"linkToUsage": true, | ||
"skipCi": true, | ||
"contributors": [ | ||
{ | ||
"login": "skyclouds2001", | ||
"name": "skyclouds2001", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/95597335?v=4", | ||
"profile": "https://github.com/skyclouds2001", | ||
"contributions": ["code", "design", "doc", "ideas", "infra", "maintenance", "review", "test"] | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
language: zh-CN | ||
tone_instructions: '' | ||
early_access: false | ||
enable_free_tier: true | ||
reviews: | ||
profile: chill | ||
request_changes_workflow: false | ||
high_level_summary: true | ||
high_level_summary_placeholder: '@coderabbitai summary' | ||
auto_title_placeholder: '@coderabbitai' | ||
review_status: true | ||
poem: true | ||
collapse_walkthrough: false | ||
sequence_diagrams: true | ||
labeling_instructions: [] | ||
path_filters: [] | ||
path_instructions: [] | ||
abort_on_close: true | ||
auto_review: | ||
enabled: true | ||
auto_incremental_review: true | ||
ignore_title_keywords: [] | ||
labels: [] | ||
drafts: false | ||
base_branches: [] | ||
tools: | ||
shellcheck: | ||
enabled: true | ||
ruff: | ||
enabled: true | ||
markdownlint: | ||
enabled: true | ||
github-checks: | ||
enabled: true | ||
timeout_ms: 90000 | ||
languagetool: | ||
enabled: true | ||
enabled_only: false | ||
level: default | ||
biome: | ||
enabled: true | ||
hadolint: | ||
enabled: true | ||
swiftlint: | ||
enabled: true | ||
phpstan: | ||
enabled: true | ||
level: default | ||
golangci-lint: | ||
enabled: true | ||
yamllint: | ||
enabled: true | ||
gitleaks: | ||
enabled: true | ||
checkov: | ||
enabled: true | ||
detekt: | ||
enabled: true | ||
eslint: | ||
enabled: true | ||
rubocop: | ||
enabled: true | ||
buf: | ||
enabled: true | ||
regal: | ||
enabled: true | ||
actionlint: | ||
enabled: true | ||
pmd: | ||
enabled: true | ||
cppcheck: | ||
enabled: true | ||
chat: | ||
auto_reply: true | ||
knowledge_base: | ||
opt_out: false | ||
learnings: | ||
scope: auto | ||
issues: | ||
scope: auto | ||
jira: | ||
project_keys: [] | ||
linear: | ||
team_keys: [] | ||
pull_requests: | ||
scope: auto |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
system: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .changeset/** | ||
- .github/** | ||
- .husky/** | ||
- '*' | ||
|
||
source: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- src/** | ||
|
||
test: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- tests/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,40 +2,64 @@ name: ci | |
|
||
on: | ||
push: | ||
branches: ['master'] | ||
branches: | ||
- master | ||
pull_request: | ||
branches: ['master'] | ||
branches: | ||
- master | ||
|
||
permissions: | ||
contents: read | ||
issues: none | ||
pull-requests: none | ||
|
||
concurrency: | ||
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
tests: | ||
lint: | ||
name: Run lint | ||
if: github.repository == 'skyclouds2001/vite-template-sky' | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8.10.0 | ||
- uses: actions/setup-node@v4 | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Install pnpm | ||
uses: pnpm/[email protected] | ||
- name: Install Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16 | ||
node-version-file: .nvmrc | ||
cache: pnpm | ||
- name: install dependencies | ||
run: pnpm install | ||
- name: run tests | ||
run: pnpm test | ||
lint: | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
- name: Run lint | ||
run: pnpm lint | ||
tests: | ||
name: Run test | ||
if: github.repository == 'skyclouds2001/vite-template-sky' | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v3 | ||
with: | ||
version: 8.10.0 | ||
- uses: actions/setup-node@v4 | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Install pnpm | ||
uses: pnpm/[email protected] | ||
- name: Install Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16 | ||
node-version-file: .nvmrc | ||
cache: pnpm | ||
- name: install dependencies | ||
run: pnpm install | ||
- name: run lint | ||
run: pnpm lint | ||
continue-on-error: true | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
- name: Run tests | ||
run: pnpm test | ||
- name: Upload test report | ||
uses: actions/[email protected] | ||
with: | ||
name: test-report | ||
path: | | ||
vitest-report/ | ||
coverage-report/ |
Oops, something went wrong.