Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ jobs:
github.event.pull_request.user.login != 'dependabot[bot]' &&
github.event.pull_request.user.login != 'github-actions[bot]'
runs-on: ubuntu-latest
concurrency: # Allows debouncing when editing the PR description
group: pr-required-checklist-${{ github.event.pull_request.number }}
cancel-in-progress: true
steps:
- name: Debounce delay
run: sleep 30 # seconds

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Check required checklist items
Expand Down
60 changes: 30 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const configExtension: { [key: string]: ViteUserConfig } = {
thresholds: {
lines: 80,
functions: 83,
statements: 79,
branches: 71,
statements: 80,
branches: 72,
},
},
},
Expand Down
Loading