ci: improve prettier coverage
Some checks failed
Build / build (push) Failing after 46s

This commit is contained in:
Sainan 2025-04-09 13:41:34 +02:00
parent 8176481407
commit e1b1084555
2 changed files with 11 additions and 1 deletions

View File

@ -13,4 +13,13 @@ jobs:
- run: npm ci - run: npm ci
- run: cp config.json.example config.json - run: cp config.json.example config.json
- run: npm run verify - run: npm run verify
- run: npm run lint - run: npm run lint:ci
- run: npm run prettier
- name: Fail if there are uncommitted changes
run: |
if [[ -n "$(git status --porcelain)" ]]; then
echo "Uncommitted changes detected:"
git status
git diff
exit 1
fi

View File

@ -9,6 +9,7 @@
"build": "tsc --incremental --sourceMap && ncp static/webui build/static/webui", "build": "tsc --incremental --sourceMap && ncp static/webui build/static/webui",
"verify": "tsgo --noEmit", "verify": "tsgo --noEmit",
"lint": "eslint --ext .ts .", "lint": "eslint --ext .ts .",
"lint:ci": "eslint --ext .ts --rule \"prettier/prettier: off\" .",
"lint:fix": "eslint --fix --ext .ts .", "lint:fix": "eslint --fix --ext .ts .",
"prettier": "prettier --write .", "prettier": "prettier --write .",
"update-translations": "cd scripts && node update-translations.js" "update-translations": "cd scripts && node update-translations.js"