-
Notifications
You must be signed in to change notification settings - Fork 38
feat: add progress circle experimental slot #240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
fb55511
feat: add progress circle experimental slot
setaman 4c51b25
chore: bump deps
setaman 26b8296
test: reactivate slot tests
setaman ab8394d
test: add circle-progress slot test
setaman bce276e
fix: correctly handle skipped animation
setaman 4d3e8a1
chore: add coderabbit config
setaman d28aaf4
test: fix container tests
setaman 0a0f205
chore: add coderabbit base branches
setaman 5f6020f
ci: simplify action
setaman a02a3f2
ci: update actions
setaman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,105 @@ | ||
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json | ||
language: en-US | ||
tone_instructions: '' | ||
early_access: true | ||
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: false | ||
collapse_walkthrough: true | ||
sequence_diagrams: false | ||
changed_files_summary: true | ||
labeling_instructions: [] | ||
path_filters: | ||
- '!App.vue' | ||
path_instructions: [] | ||
abort_on_close: true | ||
auto_review: | ||
enabled: true | ||
auto_incremental_review: true | ||
ignore_title_keywords: [] | ||
labels: [] | ||
drafts: false | ||
base_branches: | ||
- master | ||
- dev | ||
- v2-dev | ||
tools: | ||
shellcheck: | ||
enabled: true | ||
ruff: | ||
enabled: false | ||
markdownlint: | ||
enabled: true | ||
github-checks: | ||
enabled: true | ||
timeout_ms: 90000 | ||
languagetool: | ||
enabled: true | ||
enabled_only: false | ||
level: default | ||
enabled_rules: [] | ||
disabled_rules: [] | ||
enabled_categories: [] | ||
disabled_categories: [] | ||
biome: | ||
enabled: true | ||
hadolint: | ||
enabled: true | ||
swiftlint: | ||
enabled: false | ||
phpstan: | ||
enabled: false | ||
level: default | ||
golangci-lint: | ||
enabled: false | ||
yamllint: | ||
enabled: true | ||
gitleaks: | ||
enabled: true | ||
checkov: | ||
enabled: false | ||
detekt: | ||
enabled: false | ||
eslint: | ||
enabled: true | ||
rubocop: | ||
enabled: false | ||
buf: | ||
enabled: false | ||
regal: | ||
enabled: false | ||
actionlint: | ||
enabled: true | ||
pmd: | ||
enabled: false | ||
cppcheck: | ||
enabled: false | ||
semgrep: | ||
enabled: true | ||
circleci: | ||
enabled: true | ||
ast-grep: | ||
packages: [] | ||
rule_dirs: [] | ||
util_dirs: [] | ||
essential_rules: 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 contains hidden or 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,34 @@ | ||
name: Build and test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- dev | ||
- v2-dev | ||
paths: | ||
- "src/**" | ||
- "!*.md" | ||
pull_request: | ||
branches: | ||
- master | ||
- dev | ||
- v2-dev | ||
paths: | ||
- "src/**" | ||
- "!*.md" | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 20 | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Lint | ||
run: npm run lint | ||
- name: Unit tests | ||
run: npm run test |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
module.exports = { | ||
extends: ["@commitlint/config-conventional"], | ||
rules: { | ||
"type-enum": [2, "always", ["build", "ci", "docs", "feat", "fix", "refactor", "revert", "test", "release"]], | ||
"type-enum": [ | ||
2, | ||
"always", | ||
["chore", "build", "ci", "docs", "feat", "fix", "refactor", "revert", "test", "release"], | ||
], | ||
}, | ||
}; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.