From 8964dcb163163a8ab9c54a62b640518e27cddd80 Mon Sep 17 00:00:00 2001 From: Volodymyr Vreshch Date: Fri, 20 Mar 2026 22:07:29 +0100 Subject: [PATCH] chore: add prettier format:check to CI validation --- .claude/settings.local.json | 13 +++++++++++++ .github/workflows/pr-validation.yml | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 .claude/settings.local.json diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..0e52148 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,13 @@ +{ + "permissions": { + "allow": [ + "WebFetch(domain:lucide.dev)", + "WebFetch(domain:tabler.io)", + "WebFetch(domain:unpkg.com)", + "WebFetch(domain:crystalmaker.com)", + "WebFetch(domain:www.xpowder.com)", + "Bash(npm run:*)", + "Bash(gh api:*)" + ] + } +} diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index cbcd2fb..73dd3f3 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -33,6 +33,9 @@ jobs: - name: Lint code run: npm run lint + - name: Format check + run: npm run format:check + - name: Build project run: npm run build