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
4 changes: 2 additions & 2 deletions .github/workflows/QA.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
- name: Check prettier
working-directory: ui
run: |
npx prettier --check src/
npm run format-check

- name: Check eslint
working-directory: ui
run: |
npm run lint
npm run lint-check

check-i18n:
runs-on: ubuntu-24.04
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ as of 2.0.0.
- Optimize Docker build topology to reuse layers (#420)
- Optimize ePub again (#376, #436)
- Fail scraper when RDF download fails (#414)
- Fix prettier and eslint check in zimui QA CI. (#455)

### Changed

Expand Down
4 changes: 3 additions & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix",
"format": "prettier --write src/"
"lint-check": "eslint .",
"format": "prettier --write src/",
"format-check": "prettier --check src/"
},
"dependencies": {
"@fontsource/roboto": "^5.2.9",
Expand Down
Loading