Skip to content

Commit 71e0c7c

Browse files
committed
chore: Update dependencies and remove husky and lint-staged configurations
- Removed husky and lint-staged from package.json and package-lock.json. - Added new scripts for checking code formatting and documentation. - Updated GitHub Actions workflow to include formatting and documentation checks. - Cleaned up package-lock.json by removing unused dependencies.
1 parent d0bc2be commit 71e0c7c

File tree

4 files changed

+12
-1286
lines changed

4 files changed

+12
-1286
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@ jobs:
2626
cache: 'npm' # Cache dependencies
2727
- name: Install dependencies
2828
run: npm ci
29+
- name: Check code formatting
30+
run: npm run check-format
2931
- name: Build
3032
run: npm run build
33+
- name: Check documentation is up-to-date
34+
run: npm run check-doc
3135
- name: Check storage layout
3236
run: npm run check-storage-layout
3337
- name: Test deployment

.husky/pre-commit

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)