Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
file: .configs/labels/labels.yaml

- name: "Labeler"
uses: actions/labeler@v6
uses: actions/labeler@v7
with:
sync-labels: true
configuration-path: .configs/labels/labeler.yaml
4 changes: 4 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
if: ${{ !cancelled() }}
run: npm run web-ext

- name: "test"
if: ${{ !cancelled() }}
run: npm run test

- name: "eslint"
if: ${{ !cancelled() }}
run: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
uses: actions/checkout@v7

- name: "Setup Node"
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 24

Expand Down
2 changes: 2 additions & 0 deletions .ncurc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
reject:
- typescript
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ ALWAYS use the `npm run *` command NEVER pipe output into arbitrary truncation c
| `npm run clean` | `rm -rf .output` |
| `npm run lint` | `npx eslint src` ESLint |
| `npm run tsc` | `vue-tsc --noEmit` TS Check |
| `npm run test` | `tsx` run tests in `tests/` |
| `npm run prepare` | `wxt prepare` Generate i18n Types |
| `npm run prettier` | ALWAYS RUN AFTER EDITING FILES |

Expand Down
Loading
Loading