Run prettier check on commits and PRs

This commit is contained in:
Przemek Więch
2026-04-28 23:55:03 +02:00
parent 51e5d2740d
commit 923b0a55c8

View File

@@ -27,6 +27,10 @@ jobs:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
cache: 'npm' cache: 'npm'
- run: npm ci - run: npm ci
- name: Prettier Format Check
run: |
npm run prettier
git diff --exit-code
- run: npm run lint - run: npm run lint
- run: npm run build - run: npm run build
- run: npm test - run: npm test